@extends('seller.layouts.app') @section('panel_content') @php CoreComponentRepository::instantiateShopRepository(); CoreComponentRepository::initializeCache(); @endphp
{{translate('Add New Product')}}
@if ($errors->any())
@endif
@csrf
{{translate('Product Information')}}
{{-- Product Name --}}
{{translate('Enter a descriptive name for the product. [e.g. "Wireless Bluetooth Headphones"]')}}
{{ translate('Choose the product\'s brand from the list. [e.g. "Sony"]') }}
{{translate('Specify the unit of measurement for the product. [e.g. "Piece" or "kg"]')}}
{{-- Tags --}}
{{translate('Add keywords to help customers find this product. [e.g. "wireless, headphones, audio"]')}}
{{-- Barcode --}} @if (addon_is_activated('pos_system'))
{{translate('Enter the product’s barcode or SKU for inventory tracking. [e.g. "1234567890123"]')}}
@endif
{{translate('Product Files & Media')}}
{{-- Gallery Image --}}
{{translate('Browse')}}
{{ translate('Choose File') }}
{{translate('Upload multiple images, each 600x400 pixels. [e.g. Images showing products from different angles.]')}}
{{-- Thumbnail Image --}}
{{translate('Browse')}}
{{ translate('Choose File') }}
{{translate('Upload a primary image at 300x200 pixels for quick preview. [e.g. A front view of the product.]')}}
{{-- Video Provider --}}
{{translate('Select the video platform hosting the product video. [e.g. "YouTube"]')}}
{{-- Video Link --}}
{{ translate('Provide the link to the product video. [e.g. "https://www.youtube.com/watch?v=12345"]') }}
{{translate('Product Description')}}
{{translate('Write a detailed overview of the product, including features. [e.g. "These wireless Bluetooth headphones offer premium sound quality, noise cancellation, and a comfortable design for all-day use."]')}}
{{translate('Product Price & Discounts')}}
{{translate('Enter the price per unit. [e.g. "$49.99"]')}}


{{translate('Choose start and end dates for a discount period. [e.g. "01/01/2024 - 01/15/2024"]')}}
{{translate('Specify the discount percentage or amount. [e.g. "10%" or "$5.00"]')}}

{{translate('SEO Meta Tags')}}
{{translate('Add a title for SEO purposes to improve search visibility. [e.g. "Premium Wireless Bluetooth Headphones"]')}}
{{translate('Provide a short SEO-friendly description. [e.g. "High-quality Bluetooth headphones with noise cancellation."]')}}
{{ translate('Browse')}}
{{ translate('Choose File') }}
{{translate('Upload an image that represents the product in search engines. [e.g. A high-resolution image of the product.]')}}
{{-- Right side --}}
{{-- Categories --}}
{{ translate('Product Category') }}
{{ translate('Select Main') }} {{ translate('This will be used for commission based calculations and homepage category wise product Show.') }}
    @foreach ($categories as $category)
  • {{ $category->getTranslation('name') }}
  • @foreach ($category->childrenCategories as $childCategory) @include('backend.product.products.child_category', ['child_category' => $childCategory]) @endforeach @endforeach
{{translate('Product Settings')}}
{{translate('Upload an image that represents the product in search engines. [e.g. A high-resolution image of the product.]')}}
{{translate('Indicate if the product is in stock and ready to ship.')}}
{{translate('Set a date when the product will become available. Example: "01/20/2024"')}}
@if (addon_is_activated('refund_request'))
{{translate('Refund')}}
@endif
{{translate('Shipping')}}
{{translate('Shipping Configuration')}}
{{translate('Cash On Delivery')}}
{{translate('VAT & Tax')}}
@foreach($taxes as $tax)
{{translate('Enter the vat & tax rate percentage for this product. [e.g. "8%"]')}}
@endforeach
{{translate('More Products to Preorder')}}

{{translate('This is a customised section in product description page where you can select end category or selected products as More Products to Preorder.')}}

{{translate('Frequently Bought Products')}}

{{translate('This is a customised section in product description page where you can select end category or selected products as More Products to Preorder.')}}

{{-- Select Category for Frequently Bought Product --}}
@endsection @section('modal') @include('modals.product_select_modal') {{-- Pre Order Product Select Model --}} @include('preorder.common.models.pre_order_product_select_modal') {{-- Note Modal --}} @include('modals.note_modal') @endsection @section('script') @endsection