@extends('layouts.app') @section('title', 'Change Password') @php $topbarTitle = 'Change Password'; @endphp @section('app-content')
@include('auth.success-and-error-alert')

Change Password

Update your password to keep your account secure. Use a strong, unique password.

@csrf @method('PUT')
lock
@error('current_password')

{{ $message }}

@enderror
lock_reset
@error('password')

{{ $message }}

@enderror

Use at least 8 characters with uppercase, lowercase, numbers, and symbols.

verified
@error('password_confirmation')

{{ $message }}

@enderror
security

Password Security Tips

  • • Use a unique password not used on other accounts
  • • Include uppercase, lowercase, numbers, and symbols
  • • Avoid using personal information (name, birthdate, etc.)
  • • Never share your password with anyone
Cancel
@push('styles') @endpush @push('scripts') @endpush @endsection