{{-- Dynamic Branding --}} @php $primary = config('app.branding.primary_color', '#2563EB'); $secondary = config('app.branding.secondary_color', '#1E40AF'); @endphp {{-- Fonts --}} {{-- Icons --}} {{-- Tailwind & Alpine --}} {{-- FullCalendar (loaded on calendar pages) --}} @stack('head-scripts') {{-- ── SIDEBAR ──────────────────────────────────────── --}}
{{-- Mobile overlay --}}
{{-- Sidebar --}} {{-- ── MAIN CONTENT ────────────────────────────────── --}}
{{-- Top Bar --}}
{{-- Mobile menu toggle --}} {{-- Breadcrumb / Page title --}}

@yield('page-title', 'Dashboard')

@if(View::hasSection('breadcrumb')) @endif
{{-- Quick actions --}}
{{-- Flash Messages --}} @if(session('success'))

{{ session('success') }}

@endif @if($errors->any())

Please fix the errors below:

    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Page Content --}}
@yield('content')
@stack('scripts')