@extends('backEnd.master') @section('styles') @endsection @section('mainContent')
@csrf

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

@if(isModuleActive('FrontendMultiLang')) @php $LanguageList = getLanguageList(); @endphp @endif

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

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

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

@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') }}
@include('product::products.components._category_list_select')
@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


@include('product::products.components._attribute_list_select')
@if(old('choice_no')) @foreach (old('choice_no') as $key => $id) @php $attribute = \Modules\Product\Entities\Attribute::find($id); @endphp
@endforeach @endif
  • {{ __('product.is_physical_product') }}

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

{{ $errors->first('weight') }}
{{ $errors->first('length') }}
{{ $errors->first('breadth') }}
{{ $errors->first('height') }}
{{ $errors->first('additional_shipping')}}
{{ $errors->first('documents') }}

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

@if(!isModuleActive('MultiVendor'))
{{ $errors->first('single_stock') }}
@endif
{{ $errors->first('selling_price') }}
{{ $errors->first('discount')}}
@if (isModuleActive('WholeSale'))

{{ __('wholesale.Wholesale 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') }}

{{ __('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') }}

@foreach ($products as $key => $item) @endforeach
{{ __('common.name') }} {{ __('product.brand') }} {{ __('product.thumbnail') }} {{ __('product.created_at') }}
{{ $item->product_name }} {{ @$item->brand->name }}
{{ $item->product_name }}
{{ date(app('general_setting')->dateFormat->format, strtotime($item->created_at)) }}
@php echo $products->links(); @endphp

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

@foreach ($products as $key => $item) @endforeach
{{ __('common.name') }} {{ __('product.brand') }} {{ __('product.thumbnail') }} {{ __('product.created_at') }}
{{ $item->product_name }} {{ @$item->brand->name }}
{{ $item->product_name }}
{{ date(app('general_setting')->dateFormat->format, strtotime($item->created_at)) }}
@php echo $products->links(); @endphp
{{__('product.save_information')}}
@if(isModuleActive('MultiVendor')) @endif
@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_attribute_modal') @include('product::products.components._create_shipping_modal') @endsection @include('product::products.create_script')