Hi @inyansuta
It looks like Laravel converts the TokenMismatchException to a general HttpException (419) when preparing the exceptions:
So, if you want it to throw a TokenMismatchException I believe you should add the prepareException() method to your app\Exceptions\Handler.php and modify it to suit your needs.
Either that or catch the HttpException and check the error code (419).
Regards