This is doing my head in. I\'m getting this error when trying to login from a form:
Symfony \\ Component \\ HttpKernel \\ Exception \\
Me
This problem appears only if you forget attached method on your form or error in Route method.
So be sure you added method POST/GET in your form. And don't forget make matching route.
If your form method is post. make post route like this.
Route::post();
I hope you understand the method define. If you're facing problem, comment below.