mardi 8 mai 2018

Laravel 5.5 password reset token form not appearing

In Laravel 5.5 project, I received the following after submitting email id from password reset form:

http://localhost/administrator/password/reset?41704c353d33830724d76eefa0702b47201d60fe9957552fdf96e29d7c2cc62a

However, when pasting the above URL in browser, the 'laravel log' said that "local.INFO: Unable to find page". And I see that email submission form is displayed instead of the password & confirm password form.

My routes is defined as follows:

Route::group(['prefix' => 'administrator'], function() {
Route::get('password/reset', 'Auth\ForgotPasswordController@showLinkRequestForm')->name('password.email');
Route::post('password/email', 'Auth\ForgotPasswordController@sendResetLinkEmail')->name('password.email');
Route::get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm')->name('password.reset.token');
Route::post('password/reset', 'Auth\ResetPasswordController@reset')->name('password.reset');
});



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire