@extends('layouts.app') @section('content')
+ Add New Admin
@if ($admins->isNotEmpty())
@foreach ($admins as $admin) @endforeach
Name Email User Level
{{ $admin->getFullName() }} {{ $admin->email }} {{ $admin->getUserLevel() }} Edit {{ Form::open([ 'route' => [ 'admins.destroy', $admin->id ], 'method' => 'DELETE', 'class' => 'd-inline-block', 'onsubmit' => 'return confirm("Are you sure you want to delete this admin?")' ]) }} {{ Form::close() }}
{{ $admins->links() }} @else
No admins were found, create one?
@endif @endsection