The code is like this:
{{ Form::hidden('id') }}
<td class="td-actions">
{{ Form::checkbox('active', 'active',true) }}
{{ Form::hidden('active', 'inactive',false) }}
</td>
{{Form::close() }}
On displaying the value in web browser I get both values-active & inactive in both ckecked & unchecked cases.
How can I get rid of that?