I am using bcrypt() function for storing my password of a user. Now if a user wants to change his/her password, then he/she will put his old password and I will check that with old password.
Problem is whenever I am using bcrypt function to the user inputed password it shows some new generated password.
Ex: During registration a user registered with 111111 password. And during change password the user also inputing 111111 but the both comes different.
Q: Why it shows different. I am using this in laravel 5.4.