@if(!$formulaire || $formulaire->id != 0)
{!! Form::checkbox('rgpd', 1, $formulaire && $formulaire->rgpd ? true : false, array("id" => "rgpd", "class" => "filled-in chk-col-teal")) !!}
@else
{!! Form::hidden('nom', "Contact") !!}
{!! Form::hidden('rgpd', 1) !!}
@endif
{!! Form::select('champs_email', $champs, old('champs_email'), array("class" => "form-control show-tick")) !!}
@if(!$formulaire || $formulaire->id != 0)
@else
{!! Form::hidden('expediteur', "") !!}
{!! Form::hidden('nom_expediteur', "") !!}
{!! Form::hidden('sujet', "") !!}
@endif
{!! Form::textarea('text_email', old('text_email'), array('style' => 'width: 100%', "class" => "editor")) !!}
@if(!$formulaire || $formulaire->id != 0)
{!! Form::reset('Annuler', array("onclick" => "window.location = '" . action('FormulaireController@formulaires') . "'", "class" => "btn btn-sm bg-orange waves-effect pull-right")) !!}
@endif