By default, angular submits form data as a serialized json to the server.
However, laravel is expecting form-url-encoded data.
To fix this add the following to angular:
1 | .config(function($httpProvider){ |
Hope this helps you out. Wasted a lot of time figuring why it didn’t post properly.