@extends('admin.layouts.main', [ 'scripts' => [ path_asset('path.backoffice.js_path') . '/view/user/user-list.js' ] ]) @section('content')

{{!empty($memberName) ? $memberName : ""}} Users

@php $status = [ '' => 'Filter by Status', 'active' => 'Active', 'inactive' => 'Inactive', 'pendingApproval' => 'Pending Approval', 'block' => 'Block', ] @endphp {!! Form::select('status_filter', $status, null, array( 'id' => 'status_id_input', 'class' => 'form-control' )) !!}
@php $commEmpty = [ 0 => 'Filter by Committees', ]; $committeesArray = array_merge($commEmpty, $committees); @endphp {!! Form::select('committees_filter', $committeesArray, null, array( 'id' => 'committees_id_input', 'class' => 'form-control' )) !!}
@php $wgEmpty = [ 0 => 'Filter by WG / TF', ]; $wg = array_merge($wgEmpty, $workGroups); @endphp {!! Form::select('wg_filter', $wg, null, array( 'id' => 'wg_id_input', 'class' => 'form-control' )) !!}
@if ($canEdit) @endif
ID First Name Last Name Email Member Department Function Registration Date State Com / TF / WG{{ trans('backend.actions') }}
@stop