@section('site_title', formatTitle([__('Users'), config('settings.title')])) @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('admin.dashboard'), 'title' => __('Admin')], ['title' => __('Users')], ]])

{{ __('Users') }}

{{ __('New') }}
{{ __('Users') }}
@include('shared.message') @if(count($users) == 0) {{ __('No results found.') }} @else
{{ __('Name') }}
{{ __('Email') }}
{{ __('Status') }}
@foreach($users as $user)
{{ $user->email }}
@if($user->trashed()) {{ __('Disabled') }} @elseif(!$user->email_verified_at) {{ __('Pending') }} @else {{ __('Active') }} @endif
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $users->firstItem(), 'to' => $users->lastItem(), 'total' => $users->total()]) }}
{{ $users->onEachSide(1)->links() }}
@endif