{!! html()->label( 'Nom','nom') !!} {!! html()->text('nom', null)->placeholder("Nom")->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Contact','contact') !!} {!! html()->text('contact', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Agence','agence') !!} {!! html()->text('agence', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'BIC','bic') !!} {!! html()->text('bic', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Adresse','adresse') !!} {!! html()->textarea('adresse', null) ->placeholder('ADRESSE') ->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control', 'rows'=>'2']) !!}
{!! html()->label( 'Code postal','cp') !!} {!! html()->text('cp', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Ville','ville') !!} {!! html()->text('ville', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Email','email') !!} {!! html()->email('email', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Téléphone','tel') !!} {!! html()->text('tel', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
@if($mode=="show") @if($user->hasRole("ADMINISTRATEUR") || $user->can("BQE_MAJ")) Modifier @endif @if($banque->IsSupprimable) {{ html()->form('DELETE', url('/banques/'. $banque->id))->open() }} {{ html()->form()->close() }} @endif @else {!! html()->button('Enregistrer')->value('Enregistrer')->type('submit')->attributes(['class' => 'btn btn-primary']) !!} @endif Retour