@extends('layouts/pos_layout') @section('title', '| '.$moduleTitle) @section('style') @endsection @section('content')
{{ $moduleTitle }}
{!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'purchaseForm')) !!}
{!! Form::label('collection_date', 'Rebateoff Bill No:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('writeoff_bill_no', $rebateoffBillNo, ['class' => 'form-control','readonly']) !!}
{!! Form::label('collection_date', 'Rebateoff Date:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('rebateoff_date', $branchActiveDate, ['class' => 'form-control','readonly']) !!}
{!! Form::label('customer_id', 'Customer:*', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::label('sales_bill_no', 'Sales Bill No:*', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::label('installment_package', 'Installment Package:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('installment_package', null, ['class' => 'form-control', 'id' => 'installment_package', 'readonly']) !!}
{!! Form::label('sales_amount', 'Sales Amount:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('sales_amount', null, ['class' => 'form-control', 'id' => 'sales_amount', 'readonly']) !!}
{!! Form::label('service_charge', 'Service Charge:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('service_charge', null, ['class' => 'form-control', 'id' => 'service_charge', 'readonly']) !!}
{!! Form::label('installment_amount', 'Installment Amount:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('installment_amount', null, ['class' => 'form-control', 'id' => 'installment_amount', 'readonly']) !!}
{!! Form::label('balance_amount', 'Total Paid Amount:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('paid_amount', null, ['class' => 'form-control', 'id' => 'paid_amount', 'readonly']) !!}
{!! Form::label('balance_amount', 'Due Balance Amount:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('due_balance_amount', null, ['class' => 'form-control', 'id' => 'due_balance_amount', 'readonly']) !!}
{!! Form::label('balance_amount', 'Total Discount Amount:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('discount_amount', null, ['class' => 'form-control', 'id' => 'discount_amount', 'readonly']) !!}
{!! Form::label('collection_amount', 'Rebateoff Amount:*', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('rebateoff_amount', null, ['class' => 'form-control numeric', 'id' => 'rebateoff_amount', 'min' => 0]) !!}
{!! Form::label('submit', ' ', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']); !!} Close
{!! Form::close() !!}
@endsection