{{ Form::label($id, ucfirst($label), array('class' => 'control-label')) }} @if(!empty($contentType)) @endif @if($enabled)
has($errorKey) ? ' data-toggle="tooltip" title="' . $errors->first($errorKey) . '"' : '')}}> {{ Form::select($name, $list, $value, array( 'id' => $id, 'class' => 'form-control')) }}
@else {{ Form::select($name . "-sel", $list, $value, array( 'id' => $id . "-sel", 'class' => 'form-control', 'data-toggle' => (isset($errors) && $errors->has($errorKey) ? 'tooltip': null), 'title' => (isset($errors) && $errors->has($errorKey) ? $errors->first($errorKey): null), 'disabled' => 'disabled' )) }} {{ Form::hidden($name, $value, array("id" => $id)) }} @endif @if(!empty($info)) {{ $info }} @endif