@extends('layouts.dash')
@section('title') Allocataire @stop
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
{{ html()->modelForm($allocataire, 'PUT', url('allocataires/' . $allocataire->id))->attributes(['id'=>'allocataire'])->open() }}
@include("tiers.allocataires.content")
{{ html()->closeModelForm() }}
@stop
@section('styles')
@stop
@section('scripts')
@include("tiers.allocataires.scripts_allocataires")
@include('tiers.allocataires.scripts_allocataires_tables');
@stop