{!! Form::label('sonum', 'Employeur') !!}
{!! $cotisation->sonum !!}
{!! Form::text('sonum',$cotisation->nom_employeur, ['disabled' => 'true','class' => 'form-control']) !!}
{!! Form::label('date', 'Date d\'entrée') !!}
{!! Form::text('date_med', $cotisation->date, ['disabled' => 'true', 'class' => 'form-control']) !!}
{!! Form::label('type_ope', 'Opération') !!} {!! Form::select( 'type_ope',$types_operations, $cotisation->type_ope, [ 'class' => 'selectpicker' ,'data-width' => "100%", $cotisation->VerrouDebit?'disabled':'' ] ) !!}
{!! Form::label('encais_compte', 'Compte') !!} {!! Form::text('encais_compte', $cotisation->encais_compte, ['disabled' => 'true','class' => 'form-control']) !!}
{!! Form::label('exercice', 'Exercice') !!} {!! Form::text('exercice', $cotisation->exercice, ['disabled' => 'true','class' => 'form-control']) !!}
{!! Form::label('type_cotis', 'Type') !!} {!! Form::select( 'type_cotis',$types_cotisation, $cotisation->type_cotis, [ 'class' => 'selectpicker' ,'disabled' => 'true' ,'data-width' => "100%" ] ) !!}
{!! Form::label('encais_date', 'Date d\'encaissement') !!} {!! Form::text('encais_date', $cotisation->encais_date, ['disabled' => 'true','class' => 'form-control']) !!}
{!! Form::label('nbmois', 'Nb mois') !!} {!! Form::text('nbmois', $cotisation->nbmois, ['disabled' => 'true','class' => 'form-control']) !!}
{!! Form::label('mois', 'Mois de départ') !!}
{!! Form::text('mois', $cotisation->mois, ['disabled' => 'true', 'class' => 'form-control']) !!}
{!! Form::label('nbsal', 'Nb salariés') !!} {!! Form::text('nbsal', $cotisation->nbsal, ['disabled' => 'true','class' => 'form-control']) !!}
{!! Form::label('bdx', 'N° Bordereau') !!} {!! Form::text('bdx', $cotisation->bdx, ['disabled' => 'true','class' => 'form-control']) !!}
{!! Form::label('bdx_prive', 'N° Bordereau privé') !!} {!! Form::text('bdx_prive', $cotisation->bdx_prive, ['disabled' => 'true','class' => 'form-control']) !!}
{!! Form::label('observation', 'Observations') !!} {!! Form::textarea('observation', $cotisation->observation, ['disabled' => 'true', 'class' => 'form-control', 'rows'=>'2']) !!}
Cotisation @if ($cotisation->credit>0)
{!! Form::label('compte', 'Compte') !!} {!! Form::text('compte', null, ['disabled' => 'true','class' => 'form-control']) !!}
{!! Form::label('typepmt', 'Type de paiement') !!} {!! Form::select( 'typepmt', [ ''=>' ' ,'A'=>'Autre' ,'B' => 'Banque' ,'E' => 'Espèce' ,'T' => 'Trésor' ,'V' => 'Virement' ,'P' => 'Prélèvement automatique' ,'€' => 'Euro' ,'N' => 'Nul' ], $cotisation->typepmt, [ 'class' => 'selectpicker' ,'disabled' => 'true' ,'data-width' => "100%" ] ) !!}
@endif
{!! Form::label('assiette', 'Assiette') !!}
{!! Form::text('assiette', number_format($cotisation->assiette,0,","," "), ['disabled' => 'true' , 'class' => 'form-control','style'=>'text-align:right']) !!}
{!! Form::text('PrcTot', $cotisation->PrcTot, ['class' => 'form-control' ,'disabled'=>'true','style'=>'text-align:center']) !!}


{!! Form::label('clr', 'CLR') !!}
{!! Form::text('clr', number_format($cotisation->clr,0,","," "), ['placeholder' => 'CLR' ,'disabled'=>'true', 'class' => 'form-control','style'=>'text-align:right']) !!}
{!! Form::text('PrcCLR', $cotisation->PrcCLR, ['class' => 'form-control' ,'disabled'=>'true','style'=>'text-align:center']) !!}


{!! Form::label('ccpf', 'CCPF') !!}
{!! Form::text('ccpf', number_format($cotisation->ccpf,0,","," ") , ['disabled' => 'true' ,'disabled'=>'true', 'class' => 'form-control','style'=>'text-align:right']) !!}
{!! Form::text('PrcCCPF', $cotisation->PrcCCPF, ['class' => 'form-control' ,'disabled'=>'true','style'=>'text-align:center']) !!}
{!! Form::label('debit', 'Total') !!}
{!! Form::text('debit', number_format($cotisation->debit,0,","," ") , ['class' => 'form-control' ,'style'=>'font-weight:bold;text-align:right','disabled'=>'true']) !!}
@if ($cotisation->credit>0)

{!! Form::label('credit', 'Règlement') !!}
{!! Form::text('credit', number_format($cotisation->credit,0,","," ") , ['disabled' => 'true','class' => 'form-control','style'=>'font-weight:bold;text-align:right']) !!}
@else @endif