@extends("layouts.dashboard.app") @section("page-title") Admins @endSection @section("page-nav-title")

{{__('Admins')}}

{{__('Control and view all App Users')}}

@endsection @section("content") @include("layouts.main-parts.page-message")
@foreach($users as $user) @if(!$user->is_admin) @endif @endforeach
#ID {{__('Full name')}} {{__('Username')}} {{__('Email')}} {{__('Email Verified')}} {{__('Created at')}} {{__('Updated at')}} {{__('Control')}}
{{$user->id}} {{$user->full_name}} {{$user->username}} {{$user->email}} @if(!empty($user->email_verified_at)) {{__('activated')}} @else $user->id])}}" class="btn btn-danger"> {{__("Activation")}} @endif {{$user->created_at->diffForHumans()}} {{$user->updated_at->diffForHumans()}}
@endsection @section("scripts") @endsection