0
我試圖在Form
請求上顯示$錯誤,但未顯示。雖然,我的routes
都在web
中間件下。我的代碼view
。
@if ($errors->any())
<div class="alert alert-danger">
<strong>Whoops!</strong> There were some problems with your input.<br><br>
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div>
@endif
在路線
Route::group(['middleware' => ['auth', 'web']], function() {
Route::get('admin/add/user',[ 'as' => 'addUser', 'uses' =>'[email protected]']);
});
我不知道我在哪裏得到錯誤的。任何幫助。
http://stackoverflow.com/questions/34438463/laravel-5-2-errors-not-appearing-in-blade –
我的路線已經在'web'中間件,如在您提供的鏈接中所述 –
您是否在控制器中定義了 - > withErrors()? – xdevnull