我正在嘗試將錯(cuò)誤顯示類添加到我的 laravel 表單字段我的表格:{!! Form::open(array('route' => 'users.store','method'=>'POST')) !!}<div class="container mt-3"><div class="row"> <div class="col-sm-6"> <div class="form-group"> <strong>First Name:</strong> {!! Form::text('name', null, array('placeholder' => 'First Name','class' => 'form-control @error('name') is-invalid @enderror')) !!} @error('name') <span class="invalid-feedback" role="alert"> <strong>{{ $message }}</strong> </span> @enderror </div> </div></div>{!! Form::close() !!}在我將歸檔類更改為之前,該表格工作正常'class' => 'form-control @error('name') is-invalid @enderror'因?yàn)槲倚枰谳斎胱侄蜗嘛@示錯(cuò)誤消息。但是當(dāng)我運(yùn)行應(yīng)用程序時(shí),它給我一個(gè)錯(cuò)誤提示,syntax error, unexpected 'name' (T_STRING), expecting ')' 那么我做錯(cuò)了什么,我該如何解決?還如何在該字段中正確設(shè)置舊值?
1 回答

慕田峪9158850
TA貢獻(xiàn)1794條經(jīng)驗(yàn) 獲得超8個(gè)贊
使用以下代碼段將有效
{!! Form::text('name', null, $attributes = $errors->has('name') ? array('placeholder' => 'First Name', 'class' => 'form-control has-error') : array('placeholder' => 'First Name', 'class' => 'form-control')) !!}
我們需要?jiǎng)?chuàng)建兩個(gè)數(shù)組,一個(gè)用于錯(cuò)誤,另一個(gè)用于非錯(cuò)誤。
- 1 回答
- 0 關(guān)注
- 99 瀏覽
添加回答
舉報(bào)
0/150
提交
取消