When I try to login show me token error. I have checked token in view form it\'s right and when comment \\App\\Http\\Middleware\\VerifyCsrfToken::class,
in the
You did not post your sample code in your question.
Therefore check your code with the following options,
try with hidden input field value:
{!! csrf_token() !!} or {{ csrf_token() }}
You can also use form blade template:
{!! Form::open(array('method' => 'GET/POST','url' => 'YOUR_URL',)) !!}
This will automatically add CSRF Code in your html script
One more thing to include in section is: