{{-- Dynamic brand color from company --}} @if(isset($currentCompany) && $currentCompany->brand_color !== '#2563EB') @endif @vite(['resources/css/app.css', 'resources/js/app.js'])
{{-- ============ SIDEBAR ============ --}} @include('layouts.components.sidebar') {{-- ============ MAIN CONTENT ============ --}}
{{-- Header --}} @include('layouts.components.header') {{-- Page Content --}}
{{-- Breadcrumbs --}} @hasSection('breadcrumbs') @yield('breadcrumbs') @endif {{-- Page Title --}} @hasSection('page-title')

@yield('page-title')

@hasSection('page-subtitle')

@yield('page-subtitle')

@endif
@hasSection('page-actions')
@yield('page-actions')
@endif
@endif {{-- Main Content --}} @yield('content')
{{-- ============ MOBILE SIDEBAR BACKDROP ============ --}} {{-- ============ TOAST NOTIFICATIONS ============ --}} @include('layouts.components.toast') {{-- ============ CONFIRMATION MODAL ============ --}} @include('layouts.components.modal') {{-- Page-specific scripts --}} @stack('scripts')