@extends('layout.layout') @section('title') Dashboard @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('title') Debtors Age Analysis @endslot @slot('li_1') @endslot @endcomponent
{!! HTML::ul($errors->all()) !!} {!! Form::open(array('route' => 'DebtorsAgeAnalysis', 'method'=>'GET','files'=>true)) !!}
{!! Form::Label('branch_id', 'Branch') !!}
{!! Form::label('debtor_age', 'Debtor Age') !!} {!! Form::select('debtor_age', array('0'=>'Current and Over', '1'=>'30 Days and Over', '2'=>'60 Days and Over', '3'=>'90 Days and Over', '4'=>'120 Days and Over', '5'=>'Credit Balances'), null, array('class' => 'form-control input-sm form-control-sm', 'required')) !!}
{!! Form::submit('Submit', array('class' => 'btn btn-sm btn-primary')) !!}
{!! Form::close() !!}
@endsection