nidaakram's avatar

The requested URL /password/reset was not found on this server.

Hey, I am making forget password component of my project using laravel 5.4. It works fine till sending email to the required user but when I click the button in the email it gives me this error

 The requested URL /password/reset/e9c6fb5223f759a0667210227e52d401a01bc7d2427aa1a303ed9ac9bc8e94ba was not found on this server.

Kindly please tell me what is the problem.

0 likes
4 replies
jdunsmore's avatar

Are you using the make:auth helper or are you manually authenticating users?

If you are using the make:auth helper then in the web.php file you should have

Auth::routes();

This should handle the forgotten password links.

If you are manually authenticating etc, I would recommend making use of the the forgot password controllers shipped with Laravel

siangboon's avatar

make sure your php artisan route:list have an entry for password/reset/{token} and routed to the right controller accordingly.

Please or to participate in this conversation.