Как настроить путь к шаблону клика reset в Laravel 5.3?
Используемый шаблон: vendor/laravel/framework/src/Illuminate/Notifications/resources/views/email.blade.php
Я бы хотел создать свой собственный.
Также, как изменить текст этого сообщения, предопределенного в: vendor/laravel/framework/src/Illuminate/Auth/Notifications/ResetPassword.php
public function toMail()
{
return (new MailMessage)
->line([
'You are receiving this email because we received a password reset request for your account.',
'Click the button below to reset your password:',
])
->action('Reset Password', url('password/reset', $this->token))
->line('If you did not request a password reset, no further action is required.');
}