{!! html()->label( 'Employeur','sonum') !!}
{!! $cotisation->sonum !!}
{!! html()->text('sonum', $cotisation->nom_employeur)->placeholder("")->attributes([(($mode=="show")?'readonly':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Date d\'entrée','date') !!}
{!! html()->text('date_med', $cotisation->date)->placeholder("")->attributes([(($mode=="show")?'readonly':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Exercice','exercice') !!} {!! html()->text('exercice', $cotisation->exercice)->placeholder("")->attributes([(($mode=="show")?'readonly':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Type','type_cotis') !!} {!! html()->select('type_cotis',$types_cotisation,$cotisation->type_cotis) ->placeholder('A définir') ->attributes(['readonly','class' => 'form-control']) !!}
{!! html()->label( 'Nb mois','nbmois') !!} {!! html()->text('nbmois', $cotisation->nbmois)->placeholder("")->attributes([(($mode=="show")?'readonly':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Mois de départ','mois') !!}
{!! html()->text('mois', $cotisation->mois)->placeholder("")->attributes([(($mode=="show")?'readonly':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Nb salariés','nbsal') !!} {!! html()->text('nbsal', $cotisation->nbsal)->placeholder("")->attributes([(($mode=="show")?'readonly':''), 'class' => 'form-control']) !!}
{!! html()->label( 'N°Bordereau','bdx') !!} {!! html()->text('bdx', $cotisation->bdx)->placeholder("")->attributes([(($mode=="show")?'readonly':''), 'class' => 'form-control']) !!}
{!! html()->label( 'N° Bordereau privé','bdx_prive') !!} {!! html()->text('bdx_prive', $cotisation->bdx_prive)->placeholder("")->attributes([(($mode=="show")?'readonly':''), 'class' => 'form-control']) !!}
{!! html()->label( 'Observations','observation') !!} {!! html()->text('observation', $cotisation->observation)->placeholder("")->attributes([(($mode=="show")?'readonly':''), 'class' => 'form-control', 'rows'=>'2']) !!}
Règlement
{!! html()->label('Compte','compte',) !!} {!! html()->text('compte', null)->attributes(['disabled' => 'true','class' => 'form-control']) !!}
{!! html()->label( 'Type de paiement','typepmt') !!} {!! html()->select('typepmt',$types_paiement,$cotisation->typepmt) ->placeholder('A définir') ->attributes([(($mode=="show")?'readonly':''),'class' => 'form-control']) !!}
{!! html()->label( 'Date de dépôt','date_depot') !!} {!! html()->text('date_depot', (!$cotisation->date_depot)?"":$cotisation->date_depot) ->attributes([(($mode=="show")?'readonly':''),'class' => 'form-control']) !!}
{!! html()->label('Règlement','credit') !!}
{!! html()->text('credit', number_format($cotisation->credit,0,","," ")) ->attributes([(($mode=="show")?'readonly':''),'class' => 'form-control','style'=>'font-weight:bold;text-align:right']) !!}
@if ($cotisation->credit>0)
Imprimer le reçu
@endif
@if($nb_reglements>1)
{!! html()->label( ($nb_reglements-1)." autres règlements associés : ".$liste_reglement,'credit') ->attributes(['style'=>'text-align:right']) !!} {!! html()->label(" pour un montant total de : ".number_format($cotisation->TotalReglements,0,","," ")." CFP",'credit') ->attributes(['style'=>'white-space: nowrap;text-align:right']) !!}
@endif
@if($nb_cotisations>1) {!! html()->label("Cotisations associées au".(($nb_reglements>1)?"x":"")." règlement".(($nb_reglements>1)?"s":"")." ".$cotisation->ListeCotisations,'credit') ->attributes(['style'=>'font-weight:normal']) !!} {!! html()->label(" pour un montant total de : ".number_format($cotisation->TotalCotisations,0,","," ")." CFP",'credit') ->attributes(['style'=>'font-weight:normal']) !!} @endif
@if($mode=="create") Retour @else Retour @endif {!! html()->button('Enregistrer')->value('Enregistrer')->type('submit')->attributes(['class' => 'btn btn-primary']) !!}