laravel password verification

Solutions on MaxInterview for laravel password verification by the best coders in the world

showing results for - "laravel password verification"
Jerónimo
20 Sep 2019
1// verification of password
2if (Hash::check('secret', $hashedPassword))
3{
4    // The passwords match...
5}
6
7// encyption of password
8$password = Hash::make('secret');