@extends('layouts.dash')
@section('title') Nouvelle fiche controle @stop
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
{{ html()->form('POST', url('/controles'))->open() }}
@include("recouvrement.controles.content")
{{ html()->form()->close() }}
@endsection
@section('scripts')
@endsection