@extends('backEnd.master') @section('styles') @endsection @section('mainContent') @if(isModuleActive('FrontendMultiLang')) @php $LanguageList = getLanguageList(); @endphp @endif
@csrf

{{ __('product.clone_product') }}

{{ __('product.product_information') }}

  • {{ __('product.single') }}

  • {{ __('product.variant') }}

@if($product->product_type == 2) @endif @if(isModuleActive('FrontendMultiLang'))
@foreach ($LanguageList as $key => $language)
{{ $errors->first('product_name') }}
{{ $errors->first('product_sku') }}
{{ $errors->first('subtitle_1') }}
{{ $errors->first('subtitle_2') }}
@endforeach
@else
{{$errors->first('product_name')}}
{{ $errors->first('product_sku') }}
{{ $errors->first('subtitle_1') }}
{{ $errors->first('subtitle_2') }}
@endif
{{$errors->first('model_number')}}
@php $product_categories = $product->categories; @endphp @include('product::products.components._category_list_select',['product_categories' => $product_categories])
@include('product::products.components._brand_list_select')
@include('product::products.components._unit_list_select')
{{$errors->first('barcode_type')}}
{{$errors->first('minimum_order_qty')}}
{{$errors->first('max_order_qty')}}
@if(isModuleActive('GoogleMerchantCenter'))
{{ $errors->first('gtin') }}
{{ $errors->first('mpn') }}
@endif
@php $tags = []; foreach ($product->tags as $tag) { $tags[] = $tag->name; } $tags = implode(',', $tags); @endphp

{{ $errors->first('tags') }}
{{$errors->first('choice_attributes')}}
@foreach ($product->variations->unique("attribute_id") as $key => $choice_option)
@endforeach

{{ __('product.price_info_and_stock') }}

  • {{ __('product.is_physical_product') }}

{{ __('product.weight_height_info') }}

{{ $errors->first('weight') }}
{{ $errors->first('length') }}
{{ $errors->first('breadth') }}
{{ $errors->first('height') }}
@php $digital_file = @$product->skus->first()->digital_file->file_source; @endphp
{{ $errors->first('documents') }}
{{ $errors->first('additional_shipping') }}
@if(!isModuleActive('MultiVendor')) @php $frontend_product = $product->sellerProducts->where('user_id', 1)->first(); @endphp
{{ $errors->first('single_stock') }}
@endif
{{$errors->first('selling_price')}}
{{$errors->first('discount')}}
@if($product->gst_group_id) @include('product::products.components._group_gst_list',['group' => $product->gstGroup]) @endif
@if (isModuleActive('WholeSale') && ($product->product_type==1))
{{ 'Whole-Sale Price' }}
@endif @if(isModuleActive('FrontendMultiLang'))
@foreach ($LanguageList as $key => $language)

{{ __('common.description') }}

{{ __('product.specifications') }}

{{ __('common.seo_info') }}

{{ $errors->first('meta_title') }}
{{ $errors->first('meta_description') }}
@endforeach
@else

{{__("common.description")}}

{{ __('product.specifications') }}

{{ __('common.seo_info') }}

{{$errors->first('meta_title')}}
{{ $errors->first('meta_description') }}
@endif

{{ __('product.product_image_info') }}

{{ __('product.pdf_specifications') }}

{{ $errors->first('documents') }}
@if(@$product->pdf) {{ __('product.download_file') }} @endif

{{ __('product.product_videos_info') }}

{{$errors->first('video_link')}}

{{ __('product.others_info') }}

  • {{ __('common.publish') }}

  • {{ __('common.pending') }}

  • {{ __('common.up_sale') }}

  • {{ __('common.cross_sale') }}

@if(isModuleActive('GoldPrice'))
  • {{ __('common.on') }}

  • {{ __('common.off') }}

{{ $errors->first('making_charge')}}
@endif

{{ __('product.related_product') }}

{{ __('common.up_sale') }}

@if(count(@$upSales) > 0) @foreach ($upSales as $key => $upSale) @endforeach @endif
{{ __('common.name') }} {{ __('product.brand') }} {{ __('product.thumbnail') }} {{ __('product.created_at') }}
{{ $upSale->main_product->product_name }} {{ @$upSale->main_product->brand->name }}
{{ $upSale->main_product->product_name }}
{{ date(app('general_setting')->dateFormat->format, strtotime($upSale->main_product->created_at)) }}
@php echo $upSales->links(); @endphp

{{ __('common.cross_sale') }}

@if(count(@$crossSales) > 0) @foreach ($crossSales as $key => $crossSale) @endforeach @endif
{{ __('common.name') }} {{ __('product.brand') }} {{ __('product.thumbnail') }} {{ __('product.created_at') }}
{{ $crossSale->main_product->product_name }} {{ @$crossSale->main_product->brand->name }}
{{ $crossSale->main_product->product_name }}
{{ date(app('general_setting')->dateFormat->format, strtotime($crossSale->main_product->created_at)) }}
@php $crossSales->links(); @endphp
{{__('product.save_information')}}
@include('product::products.components._create_category_modal') @include('product::products.components._create_brand_modal') @include('product::products.components._create_unit_modal') @include('product::products.components._create_shipping_modal') @endsection @include('product::products.clone_scripts')