Skip to content

Commit 22da8d4

Browse files
committed
Auto-fill emails when resetting password
1 parent 0f93ba2 commit 22da8d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Notifications/SendPasswordReset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function toMail($notifiable)
7272
return (new MailMessage)
7373
->subject('Reset Password')
7474
->line('You are receiving this email because we received a password reset request for your account.')
75-
->action('Reset Password', url('auth/password/reset', $this->token))
75+
->action('Reset Password', url('/auth/password/reset/' . $this->token . '?email=' . $notifiable->email))
7676
->line('If you did not request a password reset, no further action is required.');
7777
}
7878
}

0 commit comments

Comments
 (0)