@extends('layouts.dash')
@section('title') Secteur @stop
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
{{ html()->form('POST', url('secteurs'))->open() }}
@include("param.secteurs.content")
{{ html()->form()->close() }}
@stop