@extends('admin.layouts.app') @section('title', 'Change Password') @section('content')

Change Password

Update your password to keep your account secure.

@csrf @method('PATCH')
@error('current_password')

{{ $message }}

@enderror

At least 8 characters, including uppercase, lowercase, numbers, and symbols.

@error('password')

{{ $message }}

@enderror
@error('password_confirmation')

{{ $message }}

@enderror

Security Reminder

Use a strong password that is different from your other accounts. You will be logged out after changing your password.

Cancel
@endsection