@extends('layouts.admin-new') @section('content')
@include('layouts.shared.error-display')
Users
@if(count($users)) @foreach($users as $user) @endforeach @else @endif
Name Email Status Manage
avatar
{{trim($user->name)}} {{$user->email}} @if($user->is_active) @else @endif View @if($user->is_active) Disable @else Enable @endif
{{$users->links()}}
There are no registered users
@endsection @section('page-js') @endsection