Vergleichen Sie das Hashed -Passwort und ein Textkennwort in Laravel

if (Hash::check('simple-password', $hashedPassword)) {
    // your code
}
Isaac