@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
@if(session('warning'))
{{ session('warning') }}
@endif
@if($errors->any())
@foreach($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@yield('page_title', 'Dashboard')
@yield('page_description', 'Admin dashboard overview')
@yield('page_actions')
@hasSection('date_range_selector')
@endif
@hasSection('print_button')
@endif
@hasSection('export_button')
@endif
@yield('content')