{!! html()->label( 'Groupe','id_groupe') !!}
{!! html()->select('id_groupe',null)
->options($liste_groupes)
->placeholder("A définir")
->attributes([($mode=="show"?'disabled':''),'class' => 'form-control selectpicker'])
!!}
@if($mode!="show")
{!! html()->label( 'ou Nouveau Groupe','new_groupe') !!}
{!! html()->text('new_groupe', null)->attributes(['placeholder' => 'Nom du groupe','class' => 'form-control text-uppercase']) !!}
@endif