I am trying to get validation errors to show up in Laravel.
I have a UserController set up like so:
In laravel version 5.2.41, the middleware web is thrown out.
Means adding the routes inside Route::group(['middleware' => ['web']], function () { will make the validation not work.
Route::group(['middleware' => ['web']], function () {