@extends('admin.layouts.master-soyuz') @section('title', __('Create Order')) @section('body') @component('admin.component.breadcumb', ['secondaryactive' => 'active']) @slot('heading'){{ __('Inhouse Orders') }}@endslot @slot('menu1'){{ __('Create Order') }}@endslot @slot('button')
{{ __('Back to Orders') }}
@endslot @endcomponent
@if ($errors->any()) @endif
@csrf
{{-- LEFT — main form --}}
{{-- Customer details --}}
{{ __('Customer Details') }}
{{-- Payment & Shipping --}}
{{ __('Payment & Shipping') }}
{{ __('Leave blank for auto-generation') }}
{{-- Order items --}}
{{ __('Order Items') }}
{{ __('Ctrl + D') }} {{ __('to add row') }} {{ __('Ctrl + E') }} {{ __('to remove row') }}
@if(!old('product_name')) @else @foreach(old('product_name') as $key => $item) @endforeach @endif
{{ __('Product') }} {{ __('Price') }} {{ __('Origin') }} {{ __('Qty') }} {{ __('Total') }}
{{-- RIGHT — sticky totals + submit --}}
{{ __('Order Summary') }}
{{ __('Subtotal') }}
{{ __('Shipping') }}
{{ __('Tax') }}
%
{{ old('total_tax_amount') ?? 0 }}
{{ __('Adjustment') }}
{{ __('Grand Total') }}

{{ __('Verify all details before submitting.') }}

@endsection @section('custom-script') @endsection