@push('styles') @endpush

Change Password

@csrf @method('PUT') {{-- Current Password --}}
@error('current_password')
{{ $message }}
@enderror
{{-- New Password --}}
Min 8 chars, uppercase, lowercase, number & special char
@error('password')
{{ $message }}
@enderror
{{-- Confirm Password --}}
@error('password_confirmation')
{{ $message }}
@enderror
{{-- General Errors --}} @if ($errors->any() && !$errors->has('current_password') && !$errors->has('password') && !$errors->has('password_confirmation'))
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@push('scripts') @endpush