diff --git a/app/Http/Middleware/VerifyCsrfToken.php b/app/Http/Middleware/VerifyCsrfToken.php index 87272ddfd084..90ed285e184e 100644 --- a/app/Http/Middleware/VerifyCsrfToken.php +++ b/app/Http/Middleware/VerifyCsrfToken.php @@ -33,15 +33,15 @@ class VerifyCsrfToken extends Middleware ]; - public function handle($request, \Closure $next) { + // public function handle($request, \Closure $next) { - try { - return parent::handle($request, $next); - } catch (TokenMismatchException $ex) { + // try { + // return parent::handle($request, $next); + // } catch (TokenMismatchException $ex) { - throw new TokenMismatchException('CSRF token mismatch.'); + // throw new TokenMismatchException('CSRF token mismatch.'); - } - } + // } + // } }