I have a public form where it sends Ajax request on jquery onchange event, sometimes due to the number of requests sent in the time interval I'm starting to get TokenMismatchException.
I'm using the following way to send the csrf token:
$.ajaxSetup({
headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') }
});
What would be the solution to my situation? Extending the csrf token lifetime? Thoughts?
If the call is not manipulating any sensitive information, put the route in except array in VerifyCsrfToken class.