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

{{ trans('breadcrumbs.Daily Report') }}

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

{{ Form::label('TYPE', trans('reports.Type'))}} {{ Form::select('TYPE', $type,'', ['class' => 'form-control select2','id' => 'TYPE' ,'onchange' => 'check(this.value)']) }}
{{Form::label('CURRENCY_TYPE',trans('reports.Currency Type'))}} {{ Form::select('CURRENCY_TYPE', $currencyType,'', ['class' => 'form-control','id' => 'CURRENCY_TYPE']) }}
{{ Form::label('USERNAME', trans('reports.Username')) }} {{ Form::text('USERNAME','', ['id' => 'USERNAME', 'class' => 'form-control', 'placeholder' => trans('reports.Username')]) }}
{{ Form::label('USERNAME', trans('reports.Username')) }} {{ Form::textarea('USERNAME','', ['id' => 'USERNAMES', 'class' => 'form-control', 'placeholder' => trans('reports.Username'), 'cols'=>'25', 'rows'=>'5', 'maxlength'=>'100','onchange' => 'checkUsername()']) }}
{{ Form::label('DATE_RANGE',trans('layout.Select Date Range')) }}

{{ $message }}
@endsection @section('javascript') @stop