@extends('franchise.layouts.master') @section('title', 'Users') @section('links') @endsection @section('content')
{!! Form::open(['url' => 'appusers/list','role' => 'form', 'class'=>'employee-form form-inline','id' => 'filter-form','data-form-table' => 'employee_table']) !!}
{!! Form::select('state_id', [null => 'Select State']+$state, '',['id'=>'state','class'=>'form-control select2-show-search input-xlarge select2me'])!!}
{!! Form::select('city_id', [null => 'Select City'], '',['id'=>'city','class'=>'form-control select2-show-search input-xlarge select2me'])!!}
{!! Form::close() !!}
@foreach($col_heads as $col_head) @if($col_head == 'Option') @else @endif @endforeach
{!! $col_head !!}{{ $col_head }}
@endsection @section('scripts') @endsection