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

Change Password

Update your password to keep your account secure
Security Settings
@if (session('success'))
{{ session('success') }}
@elseif(session('error'))
{{ session('error') }}
@endif
@csrf
@error('current_password')
{{ $message }}
@enderror
Password Requirements
  • At least 6 characters
  • Passwords match
  • Different from current
@error('new_password')
{{ $message }}
@enderror
Password strength
@error('new_password_confirmation')
{{ $message }}
@enderror
Security Tips
  • Use a combination of letters, numbers, and special characters
  • Avoid using personal information like your name or birthdate
  • Don't reuse passwords from other accounts
  • Consider using a password manager for better security
@endsection