PasswordBroker には $emailView 変数があります。
/**
* The view of the password reset link e-mail.
*
* @var string
*/
protected $emailView;
これを Password Controller のビューに設定すると、そのパスと名前を変更できるはずです。
うまくいかない場合は、パスワード コントローラーの emailResetLink 関数を上書きして、そこでビューを変更できます。これはLaravel 5.2のものです。異なる場合は、PasswordBroker.php から 5.1 を取得できます。
/**
* Send the password reset link via e-mail.
*
* @param \Illuminate\Contracts\Auth\CanResetPassword $user
* @param string $token
* @param \Closure|null $callback
* @return int
*/
public function emailResetLink(CanResetPasswordContract $user, $token, Closure $callback = null)
{
// We will use the reminder view that was given to the broker to display the
// password reminder e-mail. We'll pass a "token" variable into the views
// so that it may be displayed for an user to click for password reset.
$view = $this->emailView;
return $this->mailer->send($view, compact('token', 'user'), function ($m) use ($user, $token, $callback) {
$m->to($user->getEmailForPasswordReset());
if (! is_null($callback)) {
call_user_func($callback, $m, $user, $token);
}
});
}