{!! html()->label( 'Banque','banque_id') !!}
{!! html()->select('banque_id')->options(DB::table('banques')->orderby(db::raw("nom"))->pluck('nom', 'id')->toArray()) ->value(($mode!="create")?$employeur->banque_id:'') ->placeholder('') ->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control','data-width' => "100%",'onchange' => "$('#ref_banque').html($('#banque_id').val());" ]) !!}
{!! html()->label( 'Compte','compte') !!} {!! html()->text('compte', null)->attributes([($mode=="show"?'disabled':''), 'placeholder' => 'COMPTE','class' => 'form-control']) !!}
{!! html()->label('IBAN', 'IBAN') !!}
{!! html()->label( 'Pays','IBAN_pays') !!} {!! html()->text('IBAN_pays', ( isset($employeur->IBAN_pays)?$employeur->IBAN_pays:""))->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control text-uppercase']) !!}
{!! html()->label( 'Clé IBAN','IBAN_cle') !!} {!! html()->text('IBAN_cle', (isset($employeur->IBAN_cle)?$employeur->IBAN_cle:""))->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control text-uppercase']) !!}
{!! html()->label( 'Banque','IBAN_banque') !!} {!! html()->text('IBAN_banque', (isset($employeur->IBAN_banque)?$employeur->IBAN_banque:""))->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control text-uppercase']) !!}
{!! html()->label('Guichet','IBAN_guichet') !!} {!! html()->text('IBAN_guichet', (isset($employeur->IBAN_guichet)?$employeur->IBAN_guichet:""))->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control text-uppercase']) !!}
{!! html()->label( 'Numéro de compte','IBAN_compte') !!} {!! html()->text('IBAN_compte', (isset($employeur->IBAN_compte)?$employeur->IBAN_compte:""))->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control text-uppercase']) !!}
{!! html()->label( 'Clé RIb','IBAN_clerib') !!} {!! html()->text('IBAN_clerib', (isset($employeur->IBAN_clerib)?$employeur->IBAN_clerib:""))->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control text-uppercase']) !!}
{!! html()->label( 'Secteur','secteur') !!}
{!! html()->select('sec_id',DB::table('secteurs')->orderby(db::raw("nom"))->pluck(db::raw("nom"), 'id')->toArray(),null) ->placeholder('A définir') ->attributes([($mode=="show"?'disabled':''),'class' => 'form-control']) !!}