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.
I hope it helps someone.
Another reason for the problem is your .env APP_URL set to HTTP://Localhost
But the server is running at APP http://127.0.0.1:8000
so, Replacing app_url with APP_URL=http://127.0.0.1:8000
can be one of the solutions here.