@extends('layouts.app')
@section('title', ucfirst($type).' User Listing')
@section('headSource')
@endsection
@section('content')
@if($type == 'superadmin')
Super Admins
@endif
@if($type == 'coordinator')
Coordinator
@endif
@if($type == 'executive')
Executives
@endif
@if($type == 'admin')
Admins
@endif
@if($type == 'staff')
Staff Members
@endif
@if($type == 'client')
Clients
@endif