@extends('fond')
@section('title','- Enregistrer')
@section('content')
@if (session('message'))
{{ session('message') }}
@endif
@if (session('success'))
{{ session('success') }}
@endif
@if(Auth::user()->role == 1)
Nom |
Prenom |
Contact |
Email |
Action |
@foreach($agt as $agt)
{{$agt->nom}} |
{{$agt->prenom}} |
{{$agt->contact}} |
{{$agt->adresse}} |
@if(Auth::check() and Auth::user()->etat == 1)
@else
@endif
|
@endforeach
@endif
@stop