Change Your Password
You must change your password before continuing
@if (session('success'))
{{ session('success') }}
@endif
@if (session('warning') || auth()->user()->must_change_password)
{{ session('warning') ?? 'For security reasons, you must change your default password on first login.' }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif