@extends("layout") @section("content")
@if (Session::has('message'))
{{ trans(Session::get('message')) }}
@endif @if($errors->all())
{{ HTML::ul($errors->all()) }}
@endif {{ Form::open(array('url' => 'order', 'id' => 'form-orders', 'method' => 'POST')) }}
New Order

Order Number :: 0{{$order_number}}

{{ Form::text('order_number', $order_number, array('class' => 'control-label', 'readonly', 'hidden')) }}




{{ HTML::image(Config::get('kblis.organization-logo'), Config::get('kblis.country') . trans('messages.court-of-arms'), array('width' => '90px')) }}
{{ strtoupper(Config::get('constants.vl_order_form')) }}
{{Config::get('kblis.address-info')}}


{{ Form::label('store_name', 'Name:', array('class'=>'col-sm-2')) }} {{ Form::text('store_name', Config::get('constants.FACILITY_NAME'), array('class' => 'form-control col-sm-4', 'readonly')) }}
{{ Form::label('district', 'District') }} {{ Form::text('district', Config::get('constants.DISTRICT_NAME'), array('class' => 'form-control', 'readonly')) }}
{{ Form::label('start_date', 'Start Date:') }} {{ Form::text('start_date', Input::old('start_date'),array('class' => 'form-control standard-datepicker', 'rows' => '2')) }}
{{ Form::label('end_date', 'End Date:') }} {{ Form::text('end_date', Input::old('end_date'),array('class' => 'form-control standard-datepicker', 'rows' => '2')) }}
{{ Form::label('prepared_by', 'Prepared By:') }} {{ Form::text('prepared_by', Auth::User()->name,array('class' => 'form-control', 'rows' => '2', 'readonly')) }}
{{ Form::label('designation', 'Designation:') }} {{ Form::text('designation',Auth::User()->designation,array('class' => 'form-control', 'rows' => '2', 'readonly')) }}
{{ Form::label('date_prepared', 'Date Prepared:') }} {{ Form::text('date_prepared', Input::old('date_prepared'),array('class' => 'form-control standard-datepicker-nofuture', 'rows' => '2')) }}
{{ Form::label('required_date', 'Date Items Required') }} {{ Form::text('required_date', Input::old('required_date'),array('class' => 'form-control standard-datepicker', 'rows' => '2')) }}
{{ Form::label('expected_date', 'Date Items Expected') }} {{ Form::text('expected_date', Input::old('expected_date'),array('class' => 'form-control standard-datepicker','row'=>'2')) }}

Product Description Pack Size Opening Balance Qty Received
During the period
Consumption
during the period
Losses / Adjustments
(-/+)
Total Closing Balance Quantity Required Comments
{{ Form::button(" ".trans('messages.save'), array('class' => 'btn btn-primary', 'onclick' => 'submit()')) }}
{{ Form::close() }}