{{-- Logo --}} @if(file_exists(public_path('images/logo.png')))
@endif {{-- Error Code --}}
403
{{-- Error Title --}}
{{ __('common.access_denied') ?? 'Access Denied' }}
{{-- Error Message --}}
{{ __('common.access_denied_message') ?? 'You do not have permission to access this resource. Please contact your administrator if you believe this is an error.' }}
{{-- Security Note --}}
{{ __('common.security_notice') ?? 'Security Notice' }}
{{ __('common.security_notice_message') ?? 'This action has been logged for security purposes.' }}
{{-- Action Buttons --}}
{{-- Leave Impersonating Button (only show if impersonating) --}} @if(session()->has('impersonated_by'))
{{ __('common.leave_impersonating') ?? 'Leave Impersonating' }}
@endif {{-- Logout Button --}} @auth @php $logoutRoute = null; $currentPanel = null; // Detect current panel based on URL or context if (request()->is('admin*')) { $logoutRoute = 'filament.admin.auth.logout'; $currentPanel = 'admin'; } elseif (request()->is('association-admin*')) { $logoutRoute = 'filament.association-admin.auth.logout'; $currentPanel = 'association-admin'; } else { // Default to admin panel $logoutRoute = 'filament.admin.auth.logout'; $currentPanel = 'admin'; } @endphp
@csrf
{{ __('common.logout') ?? 'Logout' }}
@endauth {{-- Go Back Button --}}
{{ __('common.go_back') ?? 'Go Back' }}