@extends('layout') @section('title', 'Managers') @section('content')

Admins - {{ $header }}

@if(!$admins->isEmpty()) @foreach($admins as $admin) @endforeach
First Name Last Name Email Tel View
{{ $admin->first_name }} {{ $admin->last_name }} {{ $admin->email }} {{ $admin->tel }}
@csrf @method('DELETE') @if (in_array(Auth::user()->role, array('admin'))) @endif
First Name Last Name Email Tel View
@else Create @endif
@endsection