{!! html()->label( 'Employeur','sonum') !!}
{!! $cotisation->sonum !!}
{!! html()->text('sonum', $cotisation->nom_employeur)->placeholder("")->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->label( 'Date d\'entrée','date') !!}
{!! html()->text('date_med', $cotisation->date)->placeholder("")->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->label( 'Opération','type_ope') !!} {!! html()->select('type_ope',$types_operations,$cotisation->type_ope) ->placeholder('A définir') ->attributes(['disabled','class' => 'form-control']) !!}
{!! html()->label( 'Compte','encais_compte') !!} {!! html()->text('encais_compte', $cotisation->encais_compte)->placeholder("")->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->label( 'Exercice','exercice') !!} {!! html()->text('exercice', $cotisation->exercice) ->placeholder("") ->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->label( 'Type','type_cotis') !!} {!! html()->select('type_cotis',$types_cotisation,$cotisation->type_cotis) ->placeholder('A définir') ->attributes(['disabled' => 'true','class' => 'form-control']) !!}
{!! html()->label( 'Date d\'encaissement','encais_date') !!} {!! html()->text('encais_date', $cotisation->encais_date)->placeholder("")->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->label( 'Transaction(Comptabilité)','transaction') !!} {!! html()->text('transaction', null)->placeholder('Aucune')->attributes(['readonly','class' => 'form-control']) !!}
{!! html()->label( 'Nb mois','nbmois') !!} {!! html()->text('nbmois', $cotisation->nbmois)->placeholder("")->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->label( 'Mois de départ','mois') !!}
{!! html()->text('mois', $cotisation->mois)->placeholder("")->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->label( 'Nb salariés','nbsal') !!} {!! html()->text('nbsal', $cotisation->nbsal)->placeholder("")->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->label( 'N°Bordereau','bdx') !!} {!! html()->text('bdx', $cotisation->bdx)->placeholder("")->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->label( 'N° Bordereau privé','bdx_prive') !!} {!! html()->text('bdx_prive', $cotisation->bdx_prive)->placeholder("")->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->label( 'Observations','observation') !!} {!! html()->text('observation', $cotisation->observation)->placeholder("")->attributes(['disabled' => 'true', 'class' => 'form-control', 'rows'=>'2']) !!}
Cotisation @if ($cotisation->credit>0)
{!! html()->label( 'Compte','compte') !!} {!! html()->text('compte', null)->placeholder("")->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->label( 'Type de paiement','typepmt') !!} {!! html()->select('typepmt', [ ''=>' ' ,'A'=>'Autre','B' => 'Banque' ,'E' => 'Espèce' ,'T' => 'Trésor' ,'V' => 'Virement' ,'P' => 'Prélèvement automatique' ,'€' => 'Euro' ,'N' => 'Nul' ] ,$cotisation->typepmt) ->placeholder('A définir') ->attributes(['disabled' => 'true','class' => 'form-control']) !!}
@endif
{!! html()->label( 'Assiette','assiette') !!}
{!! html()->text('assiette', number_format($cotisation->assiette,0,","," "))->placeholder("")->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->text('PrcTot', $cotisation->PrcTot)->placeholder("")->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->label( 'CLR','clr') !!}
{!! html()->text('clr', number_format($cotisation->clr,0,","," "))->placeholder('CLR')->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->text('PrcCLR', $cotisation->PrcCLR)->placeholder('')->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->label( 'CCPF','ccpf') !!}
{!! html()->text('ccpf', number_format($cotisation->ccpf,0,","," "))->placeholder('')->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->text('PrcCCPF', $cotisation->PrcCCPF)->placeholder('')->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
{!! html()->label( 'Total','debit') !!}
{!! html()->text('debit',number_format($cotisation->debit,0,","," "))->placeholder('')->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
@if ($cotisation->credit>0)
{!! html()->label( 'Règlement','credit') !!}
{!! html()->text('credit',number_format($cotisation->credit,0,","," "))->placeholder('')->attributes(['disabled' => 'true', 'class' => 'form-control']) !!}
@else
@endif