I use Hash::make($req->pass);
to login in Laravel. Now I forgot the password. Can I change the password by editing PHPMyAdmin? Is there any PHPMyadmin function to change the Bcrypt?
For eg. To change the password stored in MD5, I can change it by using MD5 function. And it works fine for all WordPress logins.
Thanks in Advance
2
Answers
One way to change the password manually is to get the value from
to a variable and copy that value into users table password field.
I would use Tinker to achieve this:
You can also (for the sake of answering your question) just output the password from the route file:
visit the ‘/generate-password’ url, copy that password, then paste it into PHPMyAdmin