@extends('back.layouts.app', ['title' => $title]) @section('content')
@include('back.common_views.quicklinks')
@if (Auth::user()->type == config('Constants.USER_TYPE_SUPER_ADMIN')) Add New Admin User @endif
@if (Auth::user()->type == config('Constants.USER_TYPE_SUPER_ADMIN')) @endif @if ($result) @foreach ($result as $row) @if (Auth::user()->type == config('Constants.USER_TYPE_SUPER_ADMIN')) @endif @endforeach @else @endif
Created Date Name EmailType Action
{{ format_date($row->created_at, 'date') }} {{ $row->name }} {{ $row->email }} @if ($row->type == config('Constants.USER_TYPE_SUPER_ADMIN')) Super Admin @endif @if ($row->type == config('Constants.USER_TYPE_NORMAL_ADMIN')) Normal Admin @endif @if ($row->type == config('Constants.USER_TYPE_REPS_ADMIN')) Reps @endif Edit Delete User
No record found!
@endsection @section('beforeBodyClose') @endsection