@extends('layouts.retail') @section('contents')
Change Password
@csrf
@if ($errors->has('old_password'))
  • {{ $errors->first('old_password') }}
  • @endif @if ($errors->has('password'))
  • {{ $errors->first('password') }}
  • @endif @if (session('status'))
  • {{ session('status') }}
  • @endif
    Reminder
    • Avoid using easily guessable information such as birthdays, employee IDs, common words, etc. for passwords.
    • Avoid using the same password for multiple accounts.
    • Change your password regularly to keep your account secure.
    • Password strength should be at least 8 characters long and should include at least one uppercase letter, one lowercase letter, one number and one special character.
    • Do not share your password with anyone.
    @endsection