@extends('layouts.dash')
@section('title') Employeurs @stop
@section('content')
@if (Session::has('message'))
{!! Session::get('message') !!}
@endif
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
{{ html()->form('POST', url('employeurs'))->open() }}
@include("tiers.employeurs.content")
{{ html()->form()->close() }}
@stop
@section('scripts0')
@stop