@extends('back.layouts.app') @section('content')
@include('back.common_views.quicklinks')
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @if(isset($quote) && $quote->id) @method('PUT') @endif
Line Items
@if(isset($quote) && $quote->items->count()) @foreach($quote->items as $index => $item) @endforeach @else @endif
Qty Unit Description Unit Price Line Total Action
$
@if($loop->last) @endif
$
Subtotal: $0.00
Freight:
$
Taxes:
$
Total: $0.00

Payment Terms:
Deposit:
$
Cancel
@push('beforeBodyClose') @endpush @endsection