public function ForgotPassword(Request $request) {
$template_data = [
'template' => $this->template->ConstructArrayTemplate()
];
$rules = ['email' => 'required|exists:accounts|email'];
$validator = Validator::make($request->all(), $rules);
$errors = $this->sortErrors ( $validator, array('email') );
if ( $errors ) {
$template_data [ 'Errs' ] = $errors;
$template_data [ 'template' ] [ 'page_name' ] = 'Sign up';
return view('forgot_password', $template_data);
}
$response = $this->passwords->sendResetLink($request->only('email'));
switch ($response)
{
case PasswordBroker::RESET_LINK_SENT:
return redirect('');
}
}
因为:
$response = $this->passwords->sendResetLink($request->only('email'));
我收到下一个错误:
FileViewFinder.php第137行中的InvalidArgumentException:View
答案 0 :(得分:0)
要发送密码重置电子邮件,您需要提供一个用于生成电子邮件内容的视图。
您应将此模板放在 resources / views / auth / emails / password.blade.php 中。
在此模板中,您可以将重置令牌引用为 $ token ,并使用 $ user 引用用户对象。