我的文本框代碼laravel文本框無效字段mandetory
<tr valign="top">
<td>{{ Form::label('city', 'City:') }}</td>
<td colspan="3">
{{ Form::text('city', 'United States', array('class' => 'field','disabled')) }}
@if($errors->first('city'))<br/><span class="error">{{ $errors->first('city') }}</span>@endif
</td>
</tr>
模型profile.php
public static $rules = array(
'first_name' => 'required|Max:32',
'city' => 'required|Max:1',
);
已經城市領域都有價值美國,但仍表現驗證「是必需的市場。」 ,我在這裏做了什麼錯誤..任何幫助... ...