hash in laravel code example
Example 1: password match laravel
1. $user = User::where('email', request('email'))->first();
2. Hash::check(request('password'), $user->password);
This will return true or false based on whether or not the password matches.
Example 2: laravel create password hash
$password = Hash::make('yourPa$$w0rd');
Example 3: laravel hash
use Illuminate\Support\Facades\Hash;
Hash::make($newPassword);
if (Hash::check('plain-text', $hashedPassword)) {
}
Example 4: laravel hash password check
$data = User::find($id);
if( ! Hash::check( $data->password , Input::get('currPassword') ) )
{
return Redirect::to('/admin/profile')
->with('message', 'Current Password Error !')
->withInput();
}
Example 5: laravel hash namespace
use Illuminate\Support\Facades\Hash;