Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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.
 
PREVIOUS NEXT
Tagged: #password #match #laravel
ADD COMMENT
Topic
Name
6+8 =