<!-- 'Boolean FIELD_NAME_TITLE$ Field' checked by default -->
<div class="form-group col-sm-6 {{ $errors->has('$FIELD_NAME$') ? 'has-error' :'' }}">
    {!! Form::label('$FIELD_NAME$', '$FIELD_NAME_TITLE$:') !!}
    <label class="checkbox-inline">
   {!! Form::checkbox('$FIELD_NAME$', 1, true) !!}
   <!-- remove {, true} to make it unchecked by default -->
    </label>
    {!! $errors->first('$FIELD_NAME$','<span class="help-block">:message</span>') !!}
</div>
