i\'m using resource group and use this filter to resolve TokenMismatchException problem:
TokenMismatchException
Route::filter(\'csrf\', function($route, $request) {
You can as well add the url thats giving you the error inside the VerifyCsrfToken.php file in the
VerifyCsrfToken.php
protected $except = [ // ]
Let's say your route is post. You can just add in like this
protected $except = ['post', // ];`...
Hope this helps others.