@extends('layouts.dash') @section('title') Allocataire/Dedouble @stop @section('content') @if (Session::has('success'))
La fiche de l'allocataire a été supprimée
@endif @if (Session::has('message'))
{!! Session::get('message') !!}
@endif @if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif {{ html()->form('POST', url('allocataire_dedouble'))->open() }}

Suppression pour Doublon

Double à Supprimer
{!! html()->label( 'Identifiant','id') !!} {!! html()->text('id',$allocataire_double->IdPAD)->attributes(['disabled', 'class' => 'form-control']) !!}
{!! html()->label( 'Nom de naissance','nom_naissance') !!} {!! html()->text('nom_naissance', $allocataire_double->nom_naissance)->attributes(['disabled', 'class' => 'form-control']) !!}
{!! html()->label( "Nom d'usage",'nom') !!} {!! html()->text('nom', $allocataire_double->nom)->attributes(['disabled', 'class' => 'form-control']) !!}
{!! html()->label( 'Prénom','prenom') !!} {!! html()->text('prenom', $allocataire_double->prenom)->attributes(['disabled', 'class' => 'form-control']) !!}
{!! html()->label( "Famille:",'famille') !!} @if($allocataire_double->IdPADFamille) {{ $allocataire_double->IdPADFamille}} @else Aucune @endif
Original à Garder
{!! html()->label( 'Identifiant','id_original') !!} {!! html()->text('id_original',$allocataire_original->IdPAD)->attributes(['disabled', 'class' => 'form-control']) !!}
{!! html()->label( 'Nom de naissance','nom_naissance') !!} {!! html()->text('nom_naissance',$allocataire_original->nom_naissance)->attributes(['disabled', 'class' => 'form-control']) !!}
{!! html()->label( "Nom d'usage",'nom') !!} {!! html()->text('nom', $allocataire_original->nom)->attributes(['disabled', 'class' => 'form-control']) !!}
{!! html()->label( 'Prénom','prenom') !!} {!! html()->text('prenom', $allocataire_original->prenom)->attributes(['disabled', 'class' => 'form-control']) !!}
{!! html()->label( "Famille:",'famille') !!} @if($allocataire_original->IdPADFamille) {{ $allocataire_original->IdPADFamille}} @else Aucune @endif
{{ html()->form()->close() }} @stop