@php if (request()->has('redirect')) { session(['url.intended' => request()->query('redirect')]); } @endphp @if(isMaintenanceMode() || session('maintenance_mode_active'))

{{ __('Site under maintenance') }}

{{ __('The site is currently undergoing maintenance, and login is temporarily unavailable. Thank you for your patience.') }}

@endif @if ($errors->any())
@if(session('maintenance_mode_active')) {{-- Show maintenance error without "Whoops!" heading --}}
@foreach ($errors->all() as $error)

{{ $error }}

@endforeach
@else {{-- Show standard validation errors with "Whoops!" heading --}} @endif
@endif @if (session('status'))
{{ session('status') }}
@endif
@csrf
@if (Route::has('password.request')) {{ __('Forgot your password?') }} @endif {{ __('Log in') }}
@push('scripts') @endpush