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
There is a helper to add the form token inside forms. You can just use
{!! csrf_field() !!}
inside the forms. It will add the hidden input and the token.