@yield('title', 'Admin Dashboard')
@yield('page_subtitle', 'Admin operations styled to match the user dashboard shell.')
{{ session('success') ?? session('status') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
@if($errors->any())
Please fix the errors below:
@endif
@yield('content')
-
@foreach($errors->all() as $e)
- {{ $e }} @endforeach