@extends("backend/master") @section('styles') {!! HTML::style('backend/assets/css/jquery-ui.css') !!} @stop @section('maincontent')
{!! Form::open(["name"=>"paymentsReportSearchForm"]) !!}
{!! Form::text("dateFrom","",["class"=>"form-control","id"=>"dateFrom","placeholder"=>"From Date","ng-model"=>"params.dateFrom"]) !!} @if($errors->has("dateFrom")) {!! $errors->first("dateFrom") !!} @endif
{!! Form::text("dateTo","",["class"=>"form-control","id"=>"dateTo","placeholder"=>"To Date","ng-model"=>"params.dateTo"]) !!} @if($errors->has("dateTo")) {!! $errors->first("dateTo") !!} @endif
{!! Form::text("orderID","",["class"=>"form-control","id"=>"orderID","placeholder"=>"Order ID","ng-model"=>"params.orderID"]) !!} @if($errors->has("orderID")) {!! $errors->first("orderID") !!} @endif
@if($errors->has("paymentStatus")) {!! $errors->first("paymentStatus") !!} @endif

{!! Form::close() !!}
@if(Session::has('success')) {!! HTML::display_success('success') !!} @endif
@stop @section('script') {!! HTML::script('backend/js/angular.min.js') !!} {!! HTML::script('backend/js/dirPagination.js') !!} {!! HTML::script('backend/assets/js/jquery-ui.js') !!} {!! HTML::script('backend/js/angular-select2.min.js') !!} @stop