@extends('layouts.dash')
@section('title') Mise à jour d'un controle @stop
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
{{ html()->modelForm($controle, 'PUT', url('controles/' . $controle->id))->open() }}
@include("recouvrement.controles.content")
{{ html()->form()->close() }}
@stop
@section('scripts')
@endsection