Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

laravel password verification

// verification of password
if (Hash::check('secret', $hashedPassword))
{
    // The passwords match...
}

// encyption of password
$password = Hash::make('secret');
Source by laravel.com #
 
PREVIOUS NEXT
Tagged: #laravel #password #verification
ADD COMMENT
Topic
Name
7+5 =