@extends('dashboard.layouts.app') @section('title', __('Create New Order')) @section('page_heading', __('Create New Order')) @section('breadcrumb') @endsection @section('content')

{{ __('Create New Order') }}

@csrf
@error('source')
{{ $message }}
@enderror
@error('created_by_id')
{{ $message }}
@enderror
@error('assigned_to_id')
{{ $message }}
@enderror
@error('invoice_type')
{{ $message }}
@enderror
@error('coupon_code')
{{ $message }}
@enderror
@error('global_general_discount_id')
{{ $message }}
@enderror

{{ __('Order Items') }}

{{ __('Tracks') }}
@if(old('items')) @foreach(old('items') as $index => $itemData) @if($itemData['item_type'] == 'track') @endif @endforeach @endif
{{ __('Category') }} {{ __('Track') }} {{ __('Pricing Type') }} {{ __('Track Type') }} {{ __('Pricing Option') }} {{ __('Levels Number') }} {{ __('Price') }} {{ __('General Discount') }} {{ __('Actions') }}
{{ __('Placement Tests') }}
@if(old('items')) @foreach(old('items') as $index => $itemData) @if($itemData['item_type'] == 'placement_test') @endif @endforeach @endif
{{ __('Category') }} {{ __('Placement Test') }} {{ __('Pricing Type') }} {{ __('Pricing Option') }} {{ __('Quantity') }} {{ __('Price') }} {{ __('General Discount') }} {{ __('Actions') }}
{{ __('Gift Calls') }}
@if(old('items')) @foreach(old('items') as $index => $itemData) @if($itemData['item_type'] == 'gift_call') @endif @endforeach @endif
{{ __('Item Type') }} {{ __('Price') }} {{ __('Quantity') }} {{ __('General Discount') }} {{ __('Actions') }}
{{ __('Gift Call') }}
{{ __('Discussion Groups') }}
@if(old('items')) @foreach(old('items') as $index => $itemData) @if($itemData['item_type'] == 'discussion_group') @endif @endforeach @endif
{{ __('Item Type') }} {{ __('Price') }} {{ __('Quantity') }} {{ __('General Discount') }} {{ __('Actions') }}
{{ __('Discussion Group') }}
{{ __('Cancel') }}
@endsection @section('scripts') @endsection