{{ Form::label('status_filter', 'Status') }}
{{ Form::select('status_filter', [''=> 'All', 1=> 'Active', 0=> 'In-active'], '', [
'class' => "form-control select2-input status_filter",
'id' => "status_filter",
'data-live-search'=>'true',
]) }}
{{ Form::label('role_filter', 'Role') }}
{{ Form::select('role_filter', $roles, '', [
'class' => "form-control select2-input role_filter",
'id' => "role_filter",
'data-live-search'=>'true',
]) }}
{{ Form::label('company_filter', 'Company') }}
{{ Form::select('company_filter', $companies, '', [
'class' => "form-control select2-input company_filter",
'id' => "company_filter",
]) }}