{{ $app_settings->login_panel_subtitle ?? 'Sign in to your account to continue' }}
@if (session('status'))
{{ session('status') }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{-- Login page is intentionally NOT a PWA surface: no service worker is
registered here. The SW is registered on the authenticated app shell
instead, so the login HTML (which carries a session-specific CSRF
token) is always served fresh from the network. --}}