{!! html()->label( 'Nom de naissance','nom_naissance') !!} {!! html()->text('nom_naissance', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control text-uppercase']) !!}
{!! html()->label( 'Prenom','prenom') !!} {!! html()->text('prenom', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( "Nom d'usage",'nom') !!} {!! html()->text('nom', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control text-uppercase']) !!}
{!! html()->label( 'Date de naissance','date_naissance') !!}
{!! html()->text('date_naissance', null) ->placeholder('') ->attributes([($mode=="show"?'disabled':''),'class' => 'form-control']) !!}
{!! html()->label( 'Compte Rémunérations','compte') !!} {!! html()->text('compte', !isset($employe->compte)?$new_compta:null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Compte Avances','compte_avances') !!} {!! html()->text('compte_avances', !isset($employe->compte_avances)?$new_compta_avances:null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Compte Cessions','compte_cessions') !!} {!! html()->text('compte_cessions', !isset($employe->compte_cessions)?$new_compta_cessions:null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Emploi','emploi') !!} {!! html()->text('emploi', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Date de recrutement','date_recrutement') !!}
{!! html()->text('date_recrutement', null) ->placeholder('') ->attributes([($mode=="show"?'disabled':''),'class' => 'form-control']) !!}
{!! html()->label('Banque :' ,'banque_id') !!} {!! html()->select('id_banque',$liste_banques,null)->placeholder('A définir')->attributes([($mode=="show"?'disabled':''),'class' => 'form-control']) !!}
{!! html()->label('IBAN', 'IBAN') !!}
{!! html()->label( 'Pays','IBAN_pays')->attributes(['style'=>'font-weight:normal;font-size:0.9em']) !!} {!! html()->text('IBAN_pays', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control text-uppercase']) !!}
{!! html()->label( 'Clé IBAN','IBAN_cle')->attributes(['style'=>'font-weight:normal;font-size:0.9em']) !!} {!! html()->text('IBAN_cle', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control text-uppercase']) !!}
{!! html()->label( 'Banque','IBAN_banque')->attributes(['style'=>'font-weight:normal;font-size:0.9em']) !!} {!! html()->text('IBAN_banque', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control text-uppercase']) !!}
{!! html()->label('Guichet','IBAN_guichet')->attributes(['style'=>'font-weight:normal;font-size:0.9em']) !!} {!! html()->text('IBAN_guichet', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control text-uppercase']) !!}
{!! html()->label( 'Numéro de compte','IBAN_compte')->attributes(['style'=>'font-weight:normal;font-size:0.9em']) !!} {!! html()->text('IBAN_compte',null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control text-uppercase']) !!}
{!! html()->label( 'Clé RIb','IBAN_clerib')->attributes(['style'=>'font-weight:normal;font-size:0.9em']) !!} {!! html()->text('IBAN_clerib', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control text-uppercase']) !!}
@if($mode=="show") @if($user->hasRole("ADMINISTRATEUR") || $user->can("ECP_MAJ")) Modifier @endif @if($employe->canDelete) {{ html()->form('DELETE', url('/employes/'. $employe->id))->open() }} {{ html()->form()->close() }} @endif @else {!! html()->button('Enregistrer')->value('Enregistrer')->type('submit')->attributes(['class' => 'btn btn-primary']) !!} @endif Retour