@extends('layouts.dash') @section('title') Enfant @stop @section('content') @if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif

Enfant {!! $enfant->NomComplet !!}

@if (Session::has('message'))
{!! Session::get('message') !!}
@endif {{ html()->modelForm($enfant, 'PUT', url('enfants/' . $enfant->id))->open() }} @include("tiers.enfants.content") {{ html()->closeModelForm() }}
@stop @section('styles') @stop @section('scripts') @include("tiers.enfants.scripts_enfants") @stop