{!! html()->label('Nom','nom') !!} {!! html()->text('nom', null)->attributes([($mode=="show"?'disabled':''), 'placeholder' => 'Nom','class' => 'form-control']) !!}
{!! html()->checkbox('public', null)->attributes([($mode=="show"?'disabled':''),'id' => 'public', 'class' => 'custom-control-input']) !!}
{!! html()->label('Numéro RC','numrc') !!} {!! html()->text('numrc', null) ->attributes([($mode=="show"?'disabled':''),'placeholder' => 'Numéro RC', 'class' => 'form-control']) !!}
@if($mode!="create")
{!! html()->label('Nbre salariés (calculé)','nnbsalcalcom') !!} {!! html()->text('nbsalcalc', $employeur->NbEmployes)->attributes(['disabled', 'class' => 'form-control']) !!}
@endif
{!! html()->label('Statut','statut') !!}
{!! html()->select('statut')->options(App\Models\MyApp::STATUTS_ENTREPRISE,($mode!="create")?$employeur->statut:null) ->placeholder('Choisr une origine') ->attributes([($mode=="show"?'disabled':''),'class' => 'form-control']) !!}
{!! html()->label('Début d\'activité','date_deb') !!}
{!! html()->text('date_deb', null) ->placeholder('Début d\'activité') ->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control']) !!}
{!! html()->label('Fin d\'activité','date_fin') !!}
{!! html()->text('date_fin', null)->attributes([($mode=="show"?'disabled':''),'placeholder' => 'Fin d\'activité', 'class' => 'form-control']) !!}
{!! html()->checkbox('verrou', null)->attributes([($mode=="show"?'disabled':''),'id' => 'verrou', 'class' => 'custom-control-input']) !!}
{!! html()->label('Observations','observation') !!} {!! html()->text('observation', null)->attributes([($mode=="show"?'disabled':''), 'class' => 'form-control', 'rows'=>'3']) !!}