@extends('layouts.fixed') @section('title','Export Register Form') @section('css') @endsection @section('content')

Export Register

{{--
--}}
{{-- list end--}}

Export Information Form

{{ Form::model($exports,['route'=>['update.export',$exports->id],'class'=>'form-horizontal','method'=>'patch']) }}
    @php $i=0; @endphp @foreach($errors->all() as $error)
  • {{ ++$i }} {{ $error }}
  • @endforeach

Export Information

{{ 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

B/L, Shipping Information

{{ Form::label('','B/L No. / AWB No : ') }} {{ Form::text('bl_no',$exports->bl_no,['class'=>'form-control','placeholder'=>'B/L No. / AWB No']) }} @if($errors->has('bl_no')) {{ $errors->first('bl_no') }} @endif
{{ Form::label('','B/L Date : ') }} {{ Form::date('bl_date',$exports->bl_date,['class'=>'form-control','placeholder'=>'B/L Date']) }} @if($errors->has('bl_date')) {{ $errors->first('bl_date') }} @endif
{{ Form::label('','Shipping Bill No : ') }} {{ Form::text('shipping_bill_no',$exports->shipping_bill_no,['class'=>'form-control','placeholder'=>'Shipping Bill No']) }} @if($errors->has('shipping_bill_no')) {{ $errors->first('shipping_bill_no') }} @endif
{{ Form::label('','Shipping Date : ') }} {{ Form::date('shipping_date',$exports->shipping_date,['class'=>'form-control','placeholder'=>'Shipping Date']) }} @if($errors->has('shipping_date')) {{ $errors->first('shipping_date') }} @endif
{{ Form::label('','Exp No : ') }} {{ Form::text('exp_no',$exports->exp_no,['class'=>'form-control','placeholder'=>'Exp No']) }} @if($errors->has('exp_no')) {{ $errors->first('exp_no') }} @endif
{{ Form::label('','Exp Date : ') }} {{ Form::date('exp_date',$exports->exp_date,['class'=>'form-control','placeholder'=>'Exp Date']) }} @if($errors->has('exp_date')) {{ $errors->first('exp_date') }} @endif
{{Form::close()}}
@endsection @section('script') @endsection