Skip to content

Instantly share code, notes, and snippets.

@harrygr
Last active August 29, 2015 14:09
Show Gist options
  • Save harrygr/3b7c9616dda8ea5d694c to your computer and use it in GitHub Desktop.
Save harrygr/3b7c9616dda8ea5d694c to your computer and use it in GitHub Desktop.
Laravel Blade: Bootstrap form checkbox
<div class="checkbox">
{{ Form::hidden($name, 0) }}
<label>
{{ Form::checkbox($name, 1) }} {{ $label }}
</label>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment