Active checkbox changed to integer

This commit is contained in:
Tim
2017-07-08 11:25:09 +02:00
parent a5b71ae09e
commit aece7809fa
2 changed files with 5 additions and 5 deletions

View File

@@ -14,8 +14,8 @@
<div class="form-group col-sm-6">
{!! Form::label('active', 'Active:') !!}
<label class="checkbox-inline">
{!! Form::hidden('active', false) !!}
{!! Form::checkbox('active', 'True', null) !!} 1
{!! Form::hidden('active', 0, false) !!}
{!! Form::checkbox('active', 1, null) !!}
</label>
</div>