@include('common.header_links')
@include('common.header') @include('common.sidebar')

{{ $user_type->menu_name }}

@if(session('user')->user_type_id==2)
This is the list of {{ $user_type->menu_name }}. You can edit existing entries, but deletion is restricted if they are linked to any grievance records. {{ $user_type->menu_name }}(s) that are connected to complaint(s) cannot be deleted to maintain system integrity.
Note: Complaints are handled in ascending level order—if the Level 1 officer takes no action, it escalates to Level 2, and continues to the next level until resolution.
Important: You can add only one user per level while setting up level-wise grievance admins under a municipality.
@endif
@if(session('error'))
@endif @if(session('success'))
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ $user_type->menu_name }} List

{{-- Dropdown --}} {{-- Search --}} {{-- Add New --}} Add New
@foreach ($users as $index => $user) @endforeach
# Name Email Mobile City Zip Address Action
{{ ($users->currentPage() - 1) * $users->perPage() + $index + 1 }}. {{ $user->name }} {{ $user->email }} {{ $user->mobile }} {{ $user->city_name }} {{ $user->zip_code }} {{ $user->address }} Edit Delete
@include('common.footer')
@include('common.script')