{{ Form::label('','File No: ') }}
{{ Form::text('file_no',$exports->file_no,['id'=>'file_no','class'=>'form-control','placeholder'=>'File No']) }}
@if($errors->has('file_no'))
{{ $errors->first('file_no') }}
@endif
{{ Form::label('','Order Ref : ') }}
{{ Form::text('ord_ref',$exports->ord_ref,['class'=>'form-control','placeholder'=>'Order Ref']) }}
@if($errors->has('ord_ref'))
{{ $errors->first('ord_ref') }}
@endif
{{ Form::label('','Invoice No : ') }}
{{ Form::text('inv_no',$exports->inv_no,['class'=>'form-control','placeholder'=>'Invoice No.']) }}
@if($errors->has('inv_no'))
{{ $errors->first('inv_no') }}
@endif
{{ Form::label('','Invoice Date : ') }}
{{ Form::date('invoice_date',$exports->invoice_date,['class'=>'form-control date']) }}
@if($errors->has('invoice_date'))
{{ $errors->first('invoice_date') }}
@endif
{{ Form::label('','Invoice Value: ') }}
{{ Form::text('inv_value',$exports->inv_value,['class'=>'form-control','placeholder'=>'Invoice Value']) }}
@if($errors->has('inv_value'))
{{ $errors->first('inv_value') }}
@endif
{{ Form::label('','Bill Value : ') }}
{{ Form::text('bill_value',$exports->bill_value,['class'=>'form-control','placeholder'=>'Bill Value']) }}
@if($errors->has('bill_value'))
{{ $errors->first('bill_value') }}
@endif
{{ Form::label('','Nego Date : ') }}
{{ Form::date('nego_date',$exports->nego_date,['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',$exports->style_no,['class'=>'form-control','placeholder'=>'Style No/p.o No']) }}
@if($errors->has('style_no'))
{{ $errors->first('style_no') }}
@endif
{{ Form::label('','Quantity(pcs) : ') }}
{{ Form::text('qty_pcs',$exports->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::text('qty_dzs',$exports->qty_dzs,['class'=>'form-control','placeholder'=>'Quantity(dzs)']) }}
@if($errors->has('qty_dzs'))
{{ $errors->first('qty_dzs') }}
@endif
{{ Form::label('','Bank Ref. No : ') }}
{{ Form::text('ref_no',$exports->ref_no,['class'=>'form-control','placeholder'=>'Bank Ref. No']) }}
@if($errors->has('ref_no'))
{{ $errors->first('ref_no') }}
@endif
{{ Form::label('','Export LC No : ') }}
{{ Form::text('export_lc_no',$exports->export_lc_no,['class'=>'form-control','placeholder'=>'Export LC No']) }}
@if($errors->has('export_lc_no'))
{{ $errors->first('export_lc_no') }}
@endif