@extends('layouts.master') @section('title') Consultation d'une cotisation @stop @section('content')
@if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif

@if($cotisation->isReglement) Consultation du règlement @else Consultation de la cotisation @endif N°{!! $cotisation->id !!}

@if($cotisation->isReglement) @include('recouvrement.cotisations.show_reglement_field') @else @include('recouvrement.cotisations.show_cotisation_field') @endif
 
@stop