Laravel 5.3 - validate new password with old password using hash check

Laravel 5.3 - validate new password with old password using hash check

In this post, i will tell you how to validate password with database password using Hash::check method.

For security reasons, Laravel provides Hash facade to store your password in secure Bcrypt hashing.

So while you are going to change your password then it first validate with database password using Hash::check if match then you update your password with new password.

Make sure old password should be generated by Hash::make.

For security, you must define in your form to type the password twice to confirm it.

Larave have so many validation rules and as you will see in below example i have validated confirm password must match with new password.

In this example, i have created a panel where user will enter their old password with new password to update their password.

There will be three input field in form :

  • old password
  • new password
  • confirm password
  1. public function updatePassword(Request $request)
  2. {
  3.     $this->validate($request, [
  4.         'old_password' => 'required',
  5. 'new_password' => 'required|min:6',
  6. 'confirm_password' => 'required|same:new_password',
  7. ]);
  8. $data = $request->all();
  9. $user = User::find(auth()->user()->id);
  10. if(!Hash::check($data['old_password'], $user->password)){
  11.     return back()
  12.          ->with('error','The specified password does not match the database password');
  13. }else{
  14. // write code to update password
  15. }
  16. }

Phone: (+91) 8800417876
Noida, 201301