Last active
August 29, 2015 14:09
-
-
Save harrygr/3b7c9616dda8ea5d694c to your computer and use it in GitHub Desktop.
Laravel Blade: Bootstrap form checkbox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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