@extends ('core.layouts.pos_app') @section ('title', trans('pos.sale')) @section('page-header')

{{ trans('labels.backend.invoices.management') }} {{ trans('labels.backend.invoices.create') }}

@endsection @section('content')
{{ Form::hidden('customer_id', @$customer->id,['id'=>'customer_id']) }}
{{trans('general.extra_discount')}} ( {{config('currency.symbol')}} 0 )
{{trans('general.shipping')}} ( {{trans('general.tax')}} {{config('currency.symbol')}} 0 )
{{trans('general.payment_currency_client')}} {{trans('general.based_live_market')}}
@if(isset($employees[0])) {{trans('general.employee')}} @endif
{{trans('general.payment_terms')}}

{{ Form::number('tid', @$last_invoice->tid+1, ['class' => 'form-control round', 'placeholder' => trans('invoices.tid')]) }}
{{ Form::text('refer', null, ['class' => 'form-control round', 'placeholder' => trans('general.reference')]) }}
{{ Form::text('invoicedate', null, ['class' => 'form-control round required', 'placeholder' => trans('invoices.invoice_date'),'data-toggle'=>'datepicker','autocomplete'=>'false']) }}
{{ Form::text('invoiceduedate', null, ['class' => 'form-control round required', 'placeholder' => trans('invoices.invoice_due_date'),'data-toggle'=>'datepicker','autocomplete'=>'false']) }}
{{ Form::textarea('notes', null, ['class' => 'form-control round', 'placeholder' => trans('invoices.invoice_note'),'rows'=>'2']) }}
{{trans('pos.order_panel')}}
{{trans('customers.customer')}}
{{trans('business.default')}} - {{$customer->name}}
{{trans('pos.cart_items')}}
{{trans('pos.empty_cart')}}
{{ Form::hidden('subtotal','0',['id'=>'subttlform']) }}
{{trans('general.total_tax')}}: {{config('currency.symbol')}} 0
{{trans('general.total_discount')}}: {{config('currency.symbol')}} 0
{{trans('general.total')}}: {{config('currency.symbol')}} 0
@if(isset($defaults[4][0]->ship_tax['id']) && $defaults[4][0]->ship_tax['id']>0) @else @endif @include("focus.modal.pos_payment") {{ Form::close() }} @include("focus.modal.customer") @include("focus.modal.pos_stock") @include("focus.modal.pos_print") @include("focus.modal.pos_register") @include("focus.modal.pos_close_register") @include("focus.modal.pos_save_draft") @endsection @section('extra-scripts') @endsection