@extends("layouts.admin.app") @section("page-title") Dashboard @endSection @section("page-nav-title")

Dashboard

@endsection @section("content")

{{__('All Admins')}}

{{__('Create Admin')}}
@foreach($Admins as $Admin) @endforeach
{{__("Full Name")}} {{__("User Name")}} {{__("Email")}} {{__("is_super_admin")}} {{__("Action")}}
{{$Admin->full_name}} {{$Admin->username }} {{$Admin->email}} @if ($Admin->is_super_admin) {{__('is_super')}} @else {{__('Not_super')}} @endif
@endsection @section("scripts") @endsection