在laravel中使用Form类有两个问题。发现很难习惯使用数组传递的参数我正在使用twitter bootstrap:
1
{{ Form::select('title', array('Mr', 'Mrs', 'Ms', 'Miss', 'Master', 'Dr', 'Prof'), array('class' => 'input-small')) }}
2
<div class="control-group">
<div class="controls">
{{ Form::label('gender', 'Gender', array('class' => 'control-label')) }}
<label class="radio">
{{ Form::radio('gender', 'Male') }} Male
</label>
<label class="radio">
{{ Form::radio('gender', 'Female') }} Female
</label>
<p class="help-block"> Please enter your gender</p>
</div>
</div>
答案 0 :(得分:2)
1)您传递的是错误的值
public static function select($name, $options = array(), $selected = null, $attributes = array())
您必须传递所选的值,会话或Input::old('name')
{{ Form::select('title', array('Mr', 'Mrs', 'Ms', 'Miss', 'Master', 'Dr', 'Prof'), $selected = NULL, array('class' => 'input-small')) }}
2)我的模板看起来很好,我有相同的代码。你可以发布更多信息吗?