I have a registration form with several checkboxes in the view I have it configured in this way:
{!!Form::checkbox('admin','1',false,['id'=>'admin', 'class'=>'uk-checkbox'])!!}
Administrator
This is saved in the database without problem in the migration of laravel I have it configured in this way:
$table->boolean('admin')->default(0);
The user who generates the record has the option to edit it but when he tries to do the checkboxes do not appear selected, how to do so when checking the record the checkboxes that he selected when registering appear selected when editing it.