{!! html()->label( 'Nom','nom') !!} {!! html()->text('nom', null)->placeholder("Nom")->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Agence','agence') !!} {!! html()->text('agence', null)->placeholder("Agence")->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'BIC','bic') !!} {!! html()->text('bic', null)->placeholder("Code BIC")->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Adresse','adresse') !!} {!! html()->textarea('adresse', null)->placeholder("Adresse")->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label('Code postal','cp') !!} {!! html()->text('cp', null)->placeholder("Code postal")->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Ville','ville') !!} {!! html()->text('ville', null)->placeholder("Ville")->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Email','email') !!} {!! html()->email('email', null)->placeholder("Email")->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Fax','fax') !!} {!! html()->text('fax', null)->placeholder("Fax")->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Contact','contact') !!} {!! html()->text('contact', null)->placeholder("Contact")->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label('Téléphone1','tel',) !!} {!! html()->text('tel', null)->placeholder("Téléphone1")->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label('Contact2','contact2',) !!} {!! html()->text('contact2', null)->placeholder("Contact2")->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Téléphone2','tel2') !!} {!! html()->text('tel2', null)->placeholder("Téléphone2")->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->checkbox('active', null)->attributes([($mode=="show"?'disabled':''),'id' => 'active', 'class' => 'custom-control-input']) !!}
@if($mode=="show") @if($user->hasRole("ADMINISTRATEUR") || $user->can("BQE_MAJ")) Modifier @endif @if($banque->canDelete) {{ 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