@extends('layouts.app') @section('content')
{{ __('Change Password') }}
{{-- Success Message --}} @if (session('success')) @endif
@csrf {{-- Old Password --}}
@error('old_password') {{ $message }} @enderror
{{-- New Password --}}
@error('new_password') {{ $message }} @enderror {{-- Generate / Copy Buttons --}}
{{-- Confirm Password --}}
@error('new_password_confirmation') {{ $message }} @enderror
{{-- Password Rules --}}
  • Your password must be a minimum of 16 characters in length.
  • It must include at least one uppercase letter (A-Z).
  • It must include at least one lowercase letter (a-z).
  • It must contain at least one number (0-9).
  • It must contain at least one special character from the following set: #, $, %, &, *, (, ).
  • Avoid using the same character consecutively 3 times, e.g., "aaa" or "111".
  • Avoid sequential characters in the password (e.g., "abc" or "123").
  • Your new password cannot match any of your last 3 passwords.
{{-- Submit --}}
{{-- JS --}} @endsection