{!! html()->label('Exercice','exercice') !!}
{!! html()->text('exercice', null)->placeholder("Exercice")->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Date','date_sai') !!}
{!! html()->text('date_sai', null)
->placeholder('Date')
->attributes([($mode=="show"?'disabled':''),'class' => 'form-control']) !!}
{!! html()->label('Statut','statut_mdt') !!}
{!! html()->select('statut_mdt',['ANN'=>'Annulé','ENC' => 'En-cours','REJ' => 'Rejeté','VAL' => 'Validé'],null)
->placeholder('A définir')
->attributes([($mode=="show"?'disabled':''),'class' => 'form-control']) !!}
{!! html()->label('Type','type') !!}
{!! html()->select('type',['P'=>'Paiement','A' => 'Annulation'],null)
->placeholder('A définir')
->attributes([($mode=="show"?'disabled':''),'class' => 'form-control']) !!}