@extends('layouts.master') @section('content')

{{ trans('breadcrumbs.Bank Verification') }}

{{ trans('layout.Filter') }}

{{ Form::label('USERNAME', trans('helpdesk.Username')) }} {{ Form::text('USERNAME','', ['id' => 'USERNAME', 'class' => 'form-control', 'placeholder' => trans('helpdesk.Username')]) }}
{{ Form::label('ACCOUNTNO', trans('helpdesk.Account Number')) }} {{ Form::text('ACCOUNTNO','', ['id' => 'ACCOUNTNO', 'class' => 'form-control', 'placeholder' => trans('helpdesk.Account Number')]) }}
{{ Form::label('VERIFICATION_STATUS', trans('helpdesk.Verification Status')) }} {{ Form::select('VERIFICATION_STATUS',$verificationStatus,'' ,['class' => 'form-control select2','placeholder' => trans('reports.Select option'), 'id' => 'VERIFICATION_STATUS']) }}
{{ Form::label('DATE_RANGE',trans('layout.Select Date Range')) }}


@endsection @section('javascript') @include('datatablejs') @stop