@vite(['resources/css/app.css', 'resources/js/app.js']) @stack('styles')
{{-- Mobile overlay --}}
{{-- Sidebar --}} {{-- Main content area --}}
{{-- Search Modal --}} {{-- Top header --}}

@yield('title', 'Dashboard')

{{-- Search --}}
{{-- Fullscreen Toggle --}} {{-- Dark mode toggle --}} {{-- Notification bell --}} {{-- User Dropdown --}}
{{-- Page content --}}
{{-- Flash messages --}} @if(session('success'))

{{ session('success') }}

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

{{ count($errors) > 1 ? count($errors) . ' errors found' : '1 error found' }}

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

© {{ date('Y') }} {{ config('app.name') }}. All rights reserved.

Powered by {{ config('app.name') }}

@stack('scripts')