@extends('layouts.dash')
@section('title') Consultation @stop
@section('title_card') @stop
@section('subtitle_card',"")
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
{{ html()->modelForm($cotisation, 'PUT', url('cotisations/' . $cotisation->id))->open() }}
{{ html()->hidden( 'sonum',$cotisation->sonum) }}
@if($cotisation->type_ope=="REG")
@include('recouvrement.cotisations.content_reglement')
@else
@include('recouvrement.cotisations.content')
@endif
{{ html()->closeModelForm() }}
@endsection
@section('scripts')
@include("recouvrement.cotisations.scripts_cotisations")
@stop