{!! Form::checkbox('hide_label' ,1, ($form->id > 0) ? $form->hide_label : 0) !!}
{!! Form::label('hide_label','Hide Labels') !!}
{!! Form::checkbox('setting[hide_form_title]' ,1, ($form->id > 0 and isset($settings['hide_form_title'])) ? $settings['hide_form_title'] : 0 ) !!}
{!! Form::label('hide_form_title','Hide Form Title') !!}
{!! Form::checkbox('hide_placeholder' ,1, ($form->id > 0) ? $form->hide_placeholder : 0) !!}
{!! Form::label('hide_placeholder','Hide Placeholder') !!}
{!! Form::label('text_button_submit','Title Submit Button') !!}
{!! Form::text('setting[text_button_submit]' , isset($settings['text_button_submit']) ? $settings['text_button_submit'] : 'Submit', ['class' => 'form-control']) !!}