Well, this error is being ignored by default in Laravel. You can see that here: https://github.com/laravel/framework/blob/6.x/src/Illuminate/Foundation/Exceptions/Handler.php#L55-L69
This exception basically means that the session of the user has expired. Because of that, the CSRF-token is not valid anymore. If that happens you get a TokenMismatchException.
This is not really an exception in the application. This happens when for example you have a form that has been open for over 2 hours (depending on your session time). Whenever you submit after that given time, the session already has changed and therefore also the CSRF-token. You then get this exception.
Does this make any sense?
If not this might be a good read: https://laravel.com/docs/6.x/csrf