Skip to content

Instantly share code, notes, and snippets.

@harrygr
Last active April 25, 2016 21:45
Show Gist options
  • Save harrygr/a0c0c9b5de65952fc851 to your computer and use it in GitHub Desktop.
Save harrygr/a0c0c9b5de65952fc851 to your computer and use it in GitHub Desktop.
Laravel Blade: Bootstrap form select
<div class="form-group {{ $errors->has(':name') ? 'has-error' : '' }}">
{{ Form::label(':name', ':label', ['class'=>'control-label']) }}
{{ Form::select(':name', $options, $default, ['class'=>'form-control']) }}
{{ $errors->first(':name', '<span class="help-block">:message</span>') }}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment