@extends("layouts.admin.app")
@section("page-title")
Dashboard
@endSection
@section("page-nav-title")
@endsection
@section("content")
{{__("Full Name")}} |
{{__("User Name")}} |
{{__("Email")}} |
{{__("is_super_admin")}} |
{{__("Action")}} |
@foreach($Admins as $Admin)
{{$Admin->full_name}} |
{{$Admin->username }} |
{{$Admin->email}} |
@if ($Admin->is_super_admin)
{{__('is_super')}}
@else
{{__('Not_super')}}
@endif
|
|
@endforeach
@endsection
@section("scripts")
@endsection