{!! Form::select($langue->suffixe . '_type', $types, array("class" => "form-control show-tick")) !!}
{!! Form::checkbox($langue->suffixe . '_label', 1, $champs && $champs->label ? true : true, array("id" => $langue->suffixe . '_label', "class" => "filled-in chk-col-teal")) !!}
{!! Form::checkbox($langue->suffixe . '_placeholder', 1, $champs && $champs->placeholder ? true : false, array("id" => $langue->suffixe . '_placeholder', "class" => "filled-in chk-col-teal")) !!}
{!! Form::textarea($langue->suffixe . '_liste_selection', $champs ? str_replace("|", "\r\n", getTranslation("Champ", "liste_selection", $champs ? $champs->id : null, $champs ? $champs->nom : null, $langue->suffixe)) : "", array("rows" => 3, "class" => "form-control")) !!}
{!! Form::selectRange($langue->suffixe . '_rang', 1, 20, $champs ? $champs->rang : 1, array("class" => "form-control show-tick")) !!}
{!! Form::checkbox($langue->suffixe . '_requis', 1, $champs && $champs->requis ? true : false, array("id" => $langue->suffixe . '_requis', "class" => "filled-in chk-col-teal")) !!}
{!! Form::checkbox($langue->suffixe . '_email', 1, $champs && $champs->email ? true : false, array("id" => $langue->suffixe . '_email', "class" => "filled-in chk-col-teal")) !!}
{!! Form::checkbox($langue->suffixe . '_numerique', 1, $champs && $champs->numerique ? true : false, array("id" => $langue->suffixe . '_numerique', "class" => "filled-in chk-col-teal")) !!}
{!! Form::reset('Annuler', array("onclick" => "window.location = '" . action('FormulaireController@champs', array('formulaire' => $formulaire->id)) . "'", "class" => "btn btn-sm bg-orange waves-effect m-t-15 pull-right")) !!}