@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.invoice.store','method' => 'POST', 'class' => 'form-horizontal','id' => 'myform')) !!}
{{ __('Item title') }} | {{ __('Quantity') }} | {{ __('Current Balance') }} | {{ __('Subtotal') }} | |
---|---|---|---|---|
# | {!! $list_products !!} @error('product_name'){{ $message }}@enderror | @error('quantity'){{ $message }}@enderror | @error('total_quantity'){{ $message }}@enderror | @error('row_sub_total'){{ $message }}@enderror |