I'm looking to implement some "Forgot Password" functionality to an existing app and looking through the docs at https://laravel.com/docs/8.x/passwords. I'm able to generate a password reset link and redirect the user back to the site however the token needed to reset the password is contained within a query string and not part of the url. I.e.
myssite.com/password-reset?token=whatever...
when it should be
mysite.com/password-reset/whatever
According to the docs, I should be setting up a route to efect the password reset with:
Route::get('/password-reset/{token}')->...
But since the token is in the query string, Laravel doesn't parse out the token for this route.
Not sure if I have missed something fundamental here (very likely!). Any help appreciated!