Answers for "how to check password match with laravel validator class"

PHP
4

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.
Posted by: Guest on August-02-2020
0

laravel password validation

use IlluminateSupportFacadesValidator;
use IlluminateValidationRulesPassword;

$validator = Validator::make($request->all(), [
    'password' => ['required', 'confirmed', Password::min(8)],
]);
Posted by: Guest on October-12-2021

Code answers related to "how to check password match with laravel validator class"

Browse Popular Code Answers by Language