{!! html()->label( "Date",'date') !!}
{!! html()->text('date',null)->placeholder('')->attributes([($mode=="show"?'disabled':''),'class' => 'form-control','style' => 'text-align:center']) !!}
{!! html()->label( 'Référence','reference') !!} {!! html()->text('reference', null)->attributes([($mode=="show"?'disabled':''),'class' => 'form-control']) !!}
{!! html()->label("Montant",'montant') !!}
{!! html()->text('montant', null) ->attributes([($mode=="show"?'disabled':''),'class' => 'text-right form-control']) !!}
CFP
{!! html()->label( 'Observations','observations') !!} {!! html()->textarea('observations', null)->placeholder('')->attributes([($mode=="show"?'disabled':''),'class' => 'form-control', 'rows'=>'2']) !!}
@if($mode!="show")
{!! html()->button('Enregistrer')->value('Enregistrer')->type('submit')->attributes(['class' => 'btn btn-primary']) !!}
@endif