@extends('layouts.dash') @section('title') Employe @stop @section('content')
@if (Session::has('message'))
{!! Session::get('message') !!}
@endif @if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif

Nouvel employé

{{ html()->form('POST', url('employes'))->open() }} @include("tiers.employes.content") {{ html()->form()->close() }}
@stop @section('scripts') @include('tiers.employes.scripts_employes'); @stop