@extends('home') @section('title') @lang('site.site_name') @endsection @section('styles') {!! Html::style(theme_url('/invoice.css')) !!} {!! Html::style(theme_url('css/bootstrap-datepicker.min.css')) !!} @endsection @php $list_products = ''; @endphp @section('content') {!! Form::open(array('route' => 'admin.stock.store','method' => 'POST', 'class' => 'form-horizontal','id' => 'myform')) !!}
{{ __('Invoice') }}
@error('name'){{ $message }}@enderror
@error('mobile'){{ $message }}@enderror
@error('invoice_number'){{ $message }}@enderror
@error('invoice_date'){{ $message }}@enderror
{{ __('Item title') }} {{ __('Quantity') }} {{ __('Item Price') }} {{ __('Subtotal') }}
# {!! $list_products !!} @error('product_name'){{ $message }}@enderror @error('quantity'){{ $message }}@enderror @error('unit_price'){{ $message }}@enderror @error('row_sub_total'){{ $message }}@enderror
{{ __('Subtotal') }}
{{ __('Discount') }}
{{ __('Discount value') }}
{{ __('Vat') }} 14%
{{ __('Total') }}
{!! Form::close() !!} @endsection @section('scripts') {!! Html::script(Theme::current()->assetPath.'/jquery-repeater/jquery.repeater.js') !!} {!! Html::script(theme_url('js/bootstrap-datepicker.min.js')) !!} {!! Html::script(theme_url('js/bootstrap-datepicker.ar.min.js')) !!} @endsection