@extends('layouts.app')
@section('title','Settings')
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
| Nom |
Email |
|
@foreach($admins as $a)
| {{$a->name}} |
{{$a->email}}
|
Editer |
@endforeach
@endsection