I'm trying to link a button in a user account page so they can reset their password. I created a form with the url /password/reset
and pass along the email of the user but to see how the routes look for showing the reset password form when I run the command
php artisan route:list
I get the error
Class App\Http\Controllers\ResetPasswordController does not exist
I tried remaking auth by php artisan make:auth
but this didn't solve the problem. Why would it be thinking the controller isn't in app/http/Controllers/Auth/
? Why am I getting this error?
localhost:8000
You will get login and register links out of the box provided by laravel if you click the login link you wiil get a login form and a reset password link – Amr AlyRoute::auth()
? – sisve