I've installed the latest version of Metronic with Laravel. How do I solve this error?
I've followed the installation steps and haven't made any to the code.
Hi,
The error message you are seeing indicates that the HTTP GET method is being used for the "reset-password" route, but this route only supports the HTTP POST method.
To resolve this issue, you will need to ensure that any requests made to the "reset-password" route use the HTTP POST method. This could involve updating the code that is making the request to use POST instead of GET, or updating the server-side code that handles the "reset-password" route to support GET requests.
It would be helpful to know more about how you encountered this error. For example, were you trying to reset a password using a form or an API endpoint? Knowing more about the specific circumstances of the error could help to provide more targeted guidance on how to resolve it.
Thanks
Rob Hoffmann explained exactly the error. The code has not been modified, I downloaded and installed your template without any modification. I guess this error is global since it is a bug in your template...
Hi, I just managed to reproduce this error: on a clean install of the 8.1.8 Laravel demo1 starterkit (PHP 8.1.17
Laravel 10.3.3), I clicked the 'Forgot Password' link on the Login page. In the 'Forgot Password' page, I entered my own (non-registered) email address. After submit, the modal dialog shows 'We have send a password reset link to your email.'. After clicking 'Ok' in the dialog, Laravel shows the error 'The GET method is not supported for route reset-password. Supported methods: POST.' .
Hi,
We apologize for any inconvenience caused. To temporarily resolve the issue, could you please edit the following file:
/starterkit/resources/views/pages/auth/forgot-password.blade.php
I replaced the string, but clicking the submit button does nothing. It's not a problem, I will wait for it to be resolved. In the meantime, I will hide the function.
Thanks!
Great, we appreciate your patience. Rest assured that we will address the issue in the next update. In the meantime, if you have any other concerns or questions, please feel free to let us know. Thank you for your understanding.
Thanks
How long it takes to resolve the error?