@extends('layouts.master') @section('page_title', 'All Users') @section('content')
{{ Form::page_header("Users", "business") }}
{{ Form::button_link('Add New User', action('SuperAdminController@create_super_admin', compact('business')), 'add_btn') }}
@include('search._grid_search_filters', ['col_width' => 4, 'filters' => [ ['name' => 'role', 'col_width' => 7, 'list' => \App\Models\Role::get_role_filter_map(), 'placeholder' => 'All Roles'], ['name' => 'status', 'col_width' => 5, 'list' => \App\Queries\SuperAdminListQuery::$active_status_filter_map, 'placeholder' => 'All Statuses'], ]]) @include('search._complex_search', ['col_width' => 8]) @include('search._complex_search_parameter')
@include('search._search_grid_wrapper')
@endsection() @section('page_script') @include('shared_script._search_script_render') @include('shared_script._dynamic_search_columns') @endsection @section('page_style') @include('shared_style._grid_sort_style') @endsection