I recently added a new package "Intervention\Image" which required me to change my php.ini and restart apache as well as run composer to install the package..
Immediately after doing so, I'm now getting a TokenMismatchException error on a VERY simple form. It was doing it in both FF and Chrome until I cleared cache\cookies on both browsers and restarted the computer, and now it's only acting up with Chrome...
{!! Form::open(array('url'=>'submitphoto', 'files'=>'true', 'class'=>'')) !!}
<div class="form-group">
{!! Form::label('title','Gallery Title',['class'=>''])!!}
{!! Form::text('title',null,['class'=>'form-control'])!!}
</div>
<div class="form-group">
{!! Form::label('description','Gallery Description',['class'=>''])!!}
{!! Form::text('description',null,['class'=>'form-control'])!!}
</div>
{!!Form::submit('Create Photo Set',['id'=>'form-submit-button','class'=>'btn btn-primary form-control'])!!}
{!! Form::close() !!}
The token is showing to have been submitted..
------WebKitFormBoundaryhlAqIvMGp5aBkE3b
Content-Disposition: form-data; name="_token"
Um1aQAKjpxE5l5GKGk02PweZUFk1o35wrnXMuGTf
What do I do next to troubleshoot this?
Here is the rest of the debug...
in VerifyCsrfToken.php line 46
at VerifyCsrfToken->handle(object(Request), object(Closure)) in VerifyCsrfToken.php line 17
at VerifyCsrfToken->handle(object(Request), object(Closure)) in Pipeline.php line 125
at Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in ShareErrorsFromSession.php line 55
at ShareErrorsFromSession->handle(object(Request), object(Closure)) in Pipeline.php line 125
at Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in StartSession.php line 61
at StartSession->handle(object(Request), object(Closure)) in Pipeline.php line 125
at Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in AddQueuedCookiesToResponse.php line 36
at AddQueuedCookiesToResponse->handle(object(Request), object(Closure)) in Pipeline.php line 125
at Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in EncryptCookies.php line 40
at EncryptCookies->handle(object(Request), object(Closure)) in Pipeline.php line 125
at Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in CheckForMaintenanceMode.php line 42
at CheckForMaintenanceMode->handle(object(Request), object(Closure)) in Pipeline.php line 125
at Pipeline->Illuminate\Pipeline\{closure}(object(Request))
at call_user_func(object(Closure), object(Request)) in Pipeline.php line 101
at Pipeline->then(object(Closure)) in Kernel.php line 115
at Kernel->sendRequestThroughRouter(object(Request)) in Kernel.php line 84
at Kernel->handle(object(Request)) in index.php line 53