I recently migrated to Laravel 5, and now CSRF check is on every post submission. I thought about removing it but I want to follow the best practices, so I\'ll keep it that
I don't see any drawbacks. You can easily create a global token field in your layout file:
Or if you use the form builder:
{!! Form::token() !!}
In jQuery you could use something like this to attach the token to every request.