laravel 5.7中缺少“ password.update”文件

时间:2018-10-31 08:51:53

标签: php laravel

当我通过laravel 5.7提供的forgot password功能在发送到fake smtp testing server的链接中输入新密码时,页面会刷新(而不是将我路由到首页),并且密码为在数据库中没有更改为新的。 尝试解决此问题时,我发现password.update文件夹中缺少views文件。拜托,我该如何重新创建该文件?

注意:密码重置表单标记上的action属性链接到password.update文件 here is a screenshot of the form tag

1 个答案:

答案 0 :(得分:0)

默认情况下,此路由应重定向到ResetPasswordController的重置方法

Route::post('password/reset', 'Auth\ResetPasswordController@reset')->name('password.update');

检查相应文件为何不采用该方法。如果未调用默认路由,则可以尝试如上所述创建此新路由。