{{-- Success Message Alert --}} @if (session('status') === 'password-updated')

{{ __('Your password has been successfully updated.') }}

@endif {{-- PROFILE INFORMATION CARD (Read-Only) --}}
{{ strtoupper(substr($user->name, 0, 2)) }}

{{ __('Profile Information') }}

{{ __('Your account details and registered email.') }}

{{ __('To change your name or email, please contact the administration.') }}

{{-- CHANGE PASSWORD CARD --}}

{{ __('Change Password') }}

{{ __('Ensure your account is using a long, random password.') }}

@csrf {{-- Current Password --}}
@error('current_password')

{{ $message }}

@enderror
{{-- New Password --}}
@error('password')

{{ $message }}

@enderror
{{-- Confirm Password --}}