I use Laravel 5.7.
I'm trying to update one my users password
I ran this php artisan tinker
Then
>>> bcrypt(12345);
=> "$2y$10$5woTm5/1w.euUliNCujmMu.oYiC.U8YnRpBHVQN/CxyKXAYB.pGiS"
and also tried
>>> Hash::make('12345');
=> "$2y$10$vjCcADglqpHiLI9tTVlJ2OoaaoQq/qqntRaIaEclTh1exq.vdZcxK"
I copied the hash update that into my database
I tried to login with 12345. I can't log in.
What did I forget to do ?
