{!! html()->label( "Date",'date_visite') !!}
{!! html()->text('date_visite', null)->placeholder('')->attributes([($mode=="show"?'disabled':''),'class' => 'form-control','style' => 'text-align:center']) !!}
{!! html()->label('Type de visite','type_visite') !!}
{!! html()->select('type_visite',App\Models\MyApp::TYPES_VISITES,null)->placeholder('Non défini')
->attributes([($mode=="show"?'disabled':''),'class' => 'form-control']) !!}
{!! html()->label('Aide concernée','type_aide') !!}
{!! html()->select('type_aide',App\Models\MyApp::TYPES_AIDES_COMMISSIONS,null)->placeholder('Non défini')
->attributes([($mode=="show"?'disabled':''),'class' => 'form-control','id' => 'select_aide']) !!}
{!! html()->label('Taux de Handicap','tx_handicap',) !!}
{!! html()->select('tx_handicap', App\Models\MyApp::getTauxHandicapPop(false),isset($allocataire_visite->tx_handicap)?$allocataire_visite->tx_handicap:null)
->placeholder("A définir")
->attributes([($mode=="show")?'disabled':'', 'class' => 'form-control']) !!}
{!! html()->label('Niveau GIR','gir',) !!}
{!! html()->select('gir', App\Models\MyApp::getNiveauGIRPop(false),isset($allocataire_visite->gir)?$allocataire_visite->gir:null)
->placeholder("A définir")
->attributes([($mode=="show")?'disabled':'', 'class' => 'form-control']) !!}