Laravel Nova Login Form Submission Error; how to debug?

Viewed 14

I am running into an error with Laravel Nova that I'm not sure how to diagnose. When I try to log in I get "There was a problem submitting the form."

vendor.js?id=e15854a5c71630925db0da9393d8055c:2          POST http://127.0.0.1:8000/nova/login 500 (Internal Server Error)

The console does not show any errors. Where should I look to figure out what is going on here?

I'm using Laravel Passport with Lighthouse in case either of those could be the culprit?

Thank you for any help!

1 Answers

Instead of looking at the console, go to the tab Network and see the 500 request but check the response. If there is no response, turn on (if you can) APP_DEBUG and you should have a full error back

Depnding on your answer, I can edit this answer and help you fix the real error.

Related