Hi BrunoQuaresma,
Have a look on app/filters.php
normally you have this filter:
Route::filter('csrf', function()
{
if (Session::token() !== Input::get('_token'))
{
throw new Illuminate\Session\TokenMismatchException;
}
});
I can fix.
I remove the CSRF from app/Http/Kernel.php and in my routes a create a new route group with the CSRF token.
:D
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community