@extends('layouts.app') @section('content') {{-- SUCCESS TOAST --}} @if(session('success'))
{{ session('success') }}
@endif {{-- ERRORS --}} @if($errors->any())
@endif @php $setting = \App\Models\SiteSetting::first(); $activeTab = session('active_settings_tab', 'general'); @endphp {{-- OUTER CARD --}}
{{-- Card Header with title --}}

Site Settings

{{-- Tab Navigation (mirrors the profile page nav-line-tabs style) --}}
{{-- Tab Content --}}
{{-- ══════════════════════════════ TAB 1 — General & Branding ══════════════════════════════ --}}
@csrf {{-- General Information --}}
General Information
{{-- Branding --}}
Branding
@if(!empty($setting->logo))
Current Logo
@endif Allowed: JPG, PNG
@if(!empty($setting->favicon))
Current Favicon
@endif Allowed: PNG, ICO
{{-- ══════════════════════════════ TAB 2 — Contact & Social ══════════════════════════════ --}}
@csrf {{-- Contact --}}
Contact Information
{{-- Social Media --}}
Social Media
{{-- ══════════════════════════════ TAB 3 — SEO ══════════════════════════════ --}}
@csrf
SEO Information
{{-- ══════════════════════════════ TAB 4 — Global Settings (SMTP + Toggles) ══════════════════════════════ --}}
@csrf {{-- Notification Toggles --}}
Notification Channels
Email Notifications Send booking confirmations and alerts via email
WhatsApp Notifications Send booking updates via WhatsApp
{{-- SMTP Settings --}}
SMTP Configuration Email Server
{{-- /tab-content --}}
{{-- /card-body --}}
{{-- /card --}} @endsection