Disable email input on reset page

This commit is contained in:
EnesSacid-Buker
2022-08-18 18:59:00 +03:00
committed by GitHub
parent 9f7c771d21
commit d0f75780ff
4 changed files with 7 additions and 4 deletions

View File

@ -176,7 +176,7 @@ class User extends Authenticatable implements HasLocalePreference
*/
public function sendPasswordResetNotification($token)
{
$this->notify(new Reset($token));
$this->notify(new Reset($token, $this->email));
}
/**