I already saved my Password as hashed password in database and how to get password in original format?
My Password is:
 $2y$10$WASUjz4XeyjusUI5M7PY3.6vUNOofzMUiVEH/7agw6Gf4JQCWVwiy
You cannot decrypt laravel password hash which is bcrypt. You can change it with new password.
And apply comparisons like this
Edit
You can get the hashedPassword like this:
$hashedPassword = Auth::user()->getAuthPassword();
And check like this:
if (Hash::check('password', $hashedPassword)) {
    // The passwords match...
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With