Laravel 5.2 validation errors not appearing

后端 未结 4 1231
名媛妹妹
名媛妹妹 2021-01-21 13:13

I am trying to get validation errors to show up in Laravel.

I have a UserController set up like so:



        
4条回答
  •  遇见更好的自我
    2021-01-21 13:40

    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.

提交回复
热议问题