@extends('layouts.dash')
@section('title') Cotisation @stop
@section('title_card') @stop
@section('subtitle_card',"Cotisation")
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
{{ html()->form('POST', url('cotisations'))->open() }}
@include("recouvrement.cotisations.content")
{{ html()->form()->close() }}
@stop
@section('scripts')
@include("recouvrement.cotisations.scripts_cotisations")
@stop