adamwathan / bootforms

Rapid form generation with Bootstrap 3 and Laravel.
MIT License
417 stars 103 forks source link

Can't save unchecked checkbox #131

Closed elephantux closed 7 years ago

elephantux commented 7 years ago

In blade:

{!! BootForm::checkbox('Main object','main')->value(1) !!}

in HTML:

<label class="control-label">
     <input type="checkbox" name="main" value="1">Main object
</label>

No problems to save checked box, but when I submit form in $request->all() I always see 'main' => 1. How to simply save unchecked value to model?

elephantux commented 7 years ago
{!! BootForm::hidden('main')->value(0) !!}   
{!! BootForm::checkbox('Main object','main')->value(1) !!}