echo Form::checkbox('gender', 'Male', true);or
echo Form::checkbox('gender', 'Male', 'Male');To display the checkbox checked. The third parameter must be either 'true', or match the value, to check the checkbox.
echo Form::checkbox('gender[]', 'Male', true);or
echo Form::checkbox('gender[12]', 'Male', true);if you want to use record id's as the index.
It looks like you're new here. If you want to get involved, click one of these buttons!