Answers for "laravel check password"

PHP
2

how validate the password to strong password in laravel

use Illuminate\Validation\Rules\Password;


$request->validate([
    'password' => [
        'required',
        'confirmed',
        Password::min(8)
            ->mixedCase()
            ->letters()
            ->numbers()
            ->symbols()
            ->uncompromised(),
    ],
]);
Posted by: Guest on July-06-2021
0

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();
}
Posted by: Guest on December-10-2020

Code answers related to "laravel check password"

Browse Popular Code Answers by Language