@extends('admin.layouts.grid') @section('title', $item->name) @section('item_view', true) @section('back', route('admin.items.index')) @section('content')
@include('admin.items.includes.tabs-nav')
@csrf @method('PUT')
{{ translate('Name And Description') }}
{{ translate('Category And Attributes') }}
@if ($category->subCategories->count() > 0)
@endif @if ($category->categoryOptions->count() > 0) @foreach ($category->categoryOptions as $categoryOption)
@php $categoryOptionName = $categoryOption->name; @endphp
@endforeach @endif
@include('admin.items.includes.files-box') @if (@$settings->item->support_status)
{{ translate('Support') }}

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

isSupported())> isSupported())>
{{ translate('Enter the instructions that the buyer should follow to get support. ') }}
@endif
{{ translate('Price') }}
@if (!$item->hasDiscount())
isFree())>
@include('admin.partials.input-price', [ 'label' => translate('Regular License Price'), 'name' => 'regular_license_price', 'input_class' => 'form-control-md', 'min' => 1, 'value' => $item->regular_price, ])
@include('admin.partials.input-price', [ 'label' => translate('Extended License Price'), 'name' => 'extended_license_price', 'input_class' => 'form-control-md', 'min' => 1, 'value' => $item->extended_price, ])
{{ translate('Enter 0 to disable the extended license.') }}
@else
{{ translate('The price cannot be update while the item is on discount') }}
@endif
{{ translate('Purchasing') }}
isPurchaseMethodInternal())> isPurchaseMethodExternal())>
{{ 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.') }}
isActive())>
@include('admin.items.includes.sidebar')
@push('styles_libs') @endpush @push('scripts_libs') @endpush @include('admin.partials.ckeditor') @endsection