File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed
Console/stubs/make/views/auth/passwords Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 17
17
<label for="email" class="col-md-4 control-label">E-Mail Address</label>
18
18
19
19
<div class="col-md-6">
20
- <input id="email" type="email" class="form-control" name="email" value="{{ $email or old('email') }}">
20
+ <input id="email" type="email" class="form-control" name="email" value="{{ $email or old('email') }}" autofocus >
21
21
22
22
@if ($errors->has('email'))
23
23
<span class="help-block">
Original file line number Diff line number Diff line change @@ -36,15 +36,17 @@ public function via($notifiable)
36
36
}
37
37
38
38
/**
39
- * Get the notification message.
39
+ * Build the notification message.
40
40
*
41
- * @param mixed $notifiable
42
- * @return \Illuminate\Notifications\MessageBuilder
41
+ * @return $this
43
42
*/
44
- public function message ($ notifiable )
43
+ public function message ()
45
44
{
46
- return $ this ->line ('You are receiving this email because we received a password reset request for your account. Click the button below to reset your password: ' )
47
- ->action ('Reset Password ' , url ('password/reset ' , $ this ->token ).'?email= ' .urlencode ($ notifiable ->email ))
48
- ->line ('If you did not request a password reset, no further action is required. ' );
45
+ return $ this ->line ([
46
+ 'You are receiving this email because we received a password reset request for your account. ' ,
47
+ 'Click the button below to reset your password: '
48
+ ])
49
+ ->action ('Reset Password ' , url ('password/reset ' , $ this ->token ))
50
+ ->line ('If you did not request a password reset, no further action is required. ' );
49
51
}
50
52
}
You can’t perform that action at this time.
0 commit comments