Here is a snap of ResetPasswords class:
$response = Password::broker($broker)->reset($credentials, function ($user, $password) {
$this->resetPassword($user, $password);
});
If I print the $response
variable it always returns password.token
, but it should return password.reset
instead.
Where is the problem?