@extends('layouts.master') @section('header') @include('layouts.partials.header') @endsection @section('navbar') @include('layouts.partials.nav') @endsection @section('sidebar') @include('layouts.partials.sidebar') @endsection @section('content')

{{__("Administrators")}}

@include('layouts.partials.flash-message')
@foreach($items as $item) @endforeach
{{__("ID")}} {{__("Avatar")}} {{__("User Name")}} {{__("Email")}} {{__("Super Admin")}} {{__("Status")}} {{__("Actions")}}
{{$item->id}} {{$item->name}} {{$item->email}} @if($item->super_admin==1)@else{{__("-")}}@endif @if($item->status==1){{__("Active")}}@else{{__("Inactive")}}@endif
@endsection @section('footer') @include('layouts.partials.footer') @endsection @section('scripts') @include('layouts.partials.scripts') @endsection