{!! html()->label('Aide','type_aide') !!}
{!! html()->select('type_aide',App\Models\MyApp::TYPES_AIDES_COMMISSIONS,null)->placeholder('Non défini')
->attributes([($mode!="create"?'disabled':''),'class' => 'form-control','id' => 'select_aide']) !!}
Droit en cours
@if($allocataire_droit)
{!! html()->label( "Date demande",'droit_date_demande') !!}
{!! html()->text('droit_date_demande', $allocataire_droit->DateDemande)->placeholder('')->attributes(['disabled','class' => 'form-control','style' => 'text-align:center']) !!}
{!! html()->label( "Date d'ouverture",'droit_date_ouverture') !!}
{!! html()->text('droit_date_ouverture', $allocataire_droit->DateOuverture)->placeholder('')->attributes(['disabled','class' => 'form-control','style' => 'text-align:center']) !!}
{!! html()->label( "Date de Fermeture",'_droit_date_fermeture') !!}
{!! html()->text('_droit_date_fermeture', $allocataire_droit->DateFermeture)->placeholder('')->attributes(['disabled','class' => 'form-control','style' => 'text-align:center']) !!}
@endif
@if($allocataire_commission)
Taux en cours
@if( $allocataire_commission->type_aide=="APH")
{!! html()->label( "Taux de Handicap",'tx_handicap_aph') !!}
{!! html()->text('tx_handicap_aph',$allocataire->tx_handicap_aph)->attributes(['disabled','class' => 'form-control','style' => 'text-align:center']) !!}
@endif
@if( $allocataire_commission->type_aide=="AGD")
{!! html()->label( "Niveau GIR (Med)",'grp_gir_agd') !!}
{!! html()->text('grp_gir_agd',
$allocataire->getLastEvaluationValue($allocataire_commission->type_aide,"MED","GIR"))
->attributes(['disabled','class' => 'form-control','style' => 'text-align:center']) !!}
@endif
@endif