{{ Form::label('','File No: ') }}
{{ Form::text('file_no',null,['id'=>'file_no','class'=>'form-control','placeholder'=>'File No']) }}
@if($errors->has('file_no'))
{{ $errors->first('file_no') }}
@endif
{{ Form::hidden('ord_ref',null,['id'=>'ord_ref','class'=>'form-control','placeholder'=>'Order Ref']) }}
{{--
--}}
{{--
--}}
{{--{{ Form::label('','Order Ref : ') }}--}}
{{--@if($errors->has('ord_ref'))--}}
{{----}}
{{--{{ $errors->first('ord_ref') }}--}}
{{----}}
{{--@endif--}}
{{--
--}}
{{--
--}}
{{ Form::label('','Invoice No : ') }}
{{ Form::text('inv_no',null,['class'=>'form-control','placeholder'=>'Invoice No.']) }}
@if($errors->has('inv_no'))
{{ $errors->first('inv_no') }}
@endif
{{ Form::label('','Invoice Date : ') }}
{{ Form::date('invoice_date',null,['class'=>'form-control']) }}
@if($errors->has('invoice_date'))
{{ $errors->first('invoice_date') }}
@endif
{{ Form::label('','Invoice Value: ') }}
{{ Form::number('inv_value',null,['id'=>'inv_value','class'=>'form-control','placeholder'=>'Invoice Value','onKeyup'=>'cm_calculate()']) }}
@if($errors->has('inv_value'))
{{ $errors->first('inv_value') }}
@endif
{{ Form::label('','CM%: ') }}
{{ Form::number('cm_percent',null,['step'=>'any','id'=>'cm_percent','class'=>'form-control','placeholder'=>'CM%','onKeyup'=>'cm_calculate()']) }}
@if($errors->has('cm_percent'))
{{ $errors->first('cm_percent') }}
@endif
{{ Form::label('','CM Total: ') }}
{{ Form::number('cm_total',null,['step'=>'any','id'=>'cm_total','class'=>'form-control','placeholder'=>'CM Total']) }}
@if($errors->has('cm_total'))
{{ $errors->first('cm_total') }}
@endif
{{ Form::label('','Bill Value : ') }}
{{ Form::number('bill_value',null,['class'=>'form-control','placeholder'=>'Bill Value']) }}
@if($errors->has('bill_value'))
{{ $errors->first('bill_value') }}
@endif
{{ Form::label('','Nego Date : ') }}
{{ Form::date('nego_date',null,['class'=>'form-control','placeholder'=>'Nego Date']) }}
@if($errors->has('nego_date'))
{{ $errors->first('nego_date') }}
@endif
{{ Form::label('','Style No/p.o No : ') }}
{{ Form::text('style_no',null,['class'=>'form-control','placeholder'=>'Style No/p.o No']) }}
@if($errors->has('style_no'))
{{ $errors->first('style_no') }}
@endif
{{ Form::label('','Quantity(pcs) : ') }}
{{ Form::number('qty_pcs',null,['id'=>'qty_pcs','class'=>'form-control','onKeyup'=>'dzn_calculate()','placeholder'=>'Quantity(pcs)']) }}
@if($errors->has('qty_pcs'))
{{ $errors->first('qty_pcs') }}
@endif
{{ Form::label('','Quantity(dzs) : ') }}
{{ Form::number('qty_dzs',null,['id'=>'qty_dzs','class'=>'form-control','placeholder'=>'Quantity(dzs)','readonly']) }}
@if($errors->has('qty_dzs'))
{{ $errors->first('qty_dzs') }}
@endif
{{ Form::label('','Bank Ref. No : ') }}
{{ Form::text('ref_no',null,['class'=>'form-control','placeholder'=>'Bank Ref. No']) }}
@if($errors->has('ref_no'))
{{ $errors->first('ref_no') }}
@endif