My login page is sending parameters to the url when I click login, I’m using livewire version 1x, I was working well before and all of a sudden it’s misbehaving. I tried to dd()
login component but it doesnt seem to call it. This is what I get when I try to login
http:localhost:8000/login?email=precious%40gmail.com.
Login page sending parameters to the url
Thanks for the suggestion, I just copied another login blade page and it worked, couldn’t figure out what the problem was.
The problem was: You are submitting with GET
method instead of POST
, or you don’t implement livewireScripts
into your code (if you are using livewire)