@extends('admin.layouts.grid') @section('section', translate('Items')) @section('title', translate('New Item')) @section('container', 'container-max-lg') @section('back', route('admin.items.index')) @section('content')
@csrf
{{ translate('Name And Description') }}
{{ translate('Category And Attributes') }}
@if ($category->subCategories->count() > 0)
@endif @if ($category->categoryOptions->count() > 0) @foreach ($category->categoryOptions as $categoryOption)
@endforeach @endif
@include('admin.items.includes.files-box')
{{ translate('Support') }}

{{ translate('Item will be supported?') }}

{{ translate('Enter the instructions that the buyer should follow to get support. ') }}
{{ translate('Price') }}
@include('admin.partials.input-price', [ 'label' => translate('Regular License Price'), 'name' => 'regular_license_price', 'input_class' => 'form-control-md', 'min' => 1, ])
@include('admin.partials.input-price', [ 'label' => translate('Extended License Price'), 'name' => 'extended_license_price', 'input_class' => 'form-control-md', 'min' => 1, ])
{{ translate('Enter 0 to disable the extended license.') }}
{{ translate('Purchasing') }}
{{ translate('The buyers will be redirected to this URL after clicking on "Add to cart" or "Buy now"') }}
{{ translate('Status') }}
{{ translate('The item will be hidden from the website for new users but remain accessible to buyers who have already purchased it.') }}
@push('top_scripts') @endpush @push('styles_libs') @endpush @push('scripts_libs') @endpush @include('admin.partials.ckeditor') @endsection