@extends('layouts.dash')
@section('title') Enfant @stop
@section('content')
@if (Session::has('message'))
{{ Session::get('message') }}
@else
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
{{ html()->modelForm($enfant, 'PUT', url('enfants/' . $enfant->id))->open() }}
@include("tiers.enfants.content")
{{ html()->closeModelForm() }}
@endif
@stop
@section('scripts0')
@include('tiers.enfants.scripts_enfant')
@stop