@extends('unit-admin.layout') @section('title', 'Change Password') @section('page_title', 'Change Password') @section('content')
Change Password
{{-- TIPS --}}
Password Requirements
  • At least 8 characters
  • Must be different from current password
  • Mix letters, numbers and symbols for strength
@csrf
@error('current_password') {{ $message }} @enderror
{{-- Strength meter --}}
@error('new_password') {{ $message }} @enderror
@error('confirm_password') {{ $message }} @enderror
@endsection @section('scripts') @endsection