@extends('admin.layouts.sellermastersoyuz') @section('title',__('Create new product ')) @section('body') @component('seller.components.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Create new product') }} @endslot @slot('menu1') {{ __('Simple Product') }} @endslot @slot('menu1') {{ __('Create new product') }} @endslot @slot('button')
{{ __("Back")}}
@endslot @endcomponent
@if ($errors->any())
@foreach($errors->all() as $error)
{{ $error}}
×
@endforeach
@endif
{{ __('Create new product') }}
@csrf
{{__('Product Type')}}:
*
{{ __("Please select product type") }}
{{ __("Simple Product") }}
{{ __("Digital Product") }}
{{ __("External Product") }}
{{__('Product Name')}}:
*
:
*
{{__('Product Brand:')}}
*
{{ __('Please Select') }}
@if(!empty($brands_all)) @foreach($brands_all as $brand)
id == old('brand_id') ? 'selected="selected"' : '' }}> {{$brand->name}}
@endforeach @endif
{{__("Product Store:")}}
*
{{ $store->name }}
{{__("Key Features :")}}
{!! old('key_features') !!}
{{__("Product Description:")}}
*
{{ old('product_detail') }}
{{__("Product Category:")}}
*
{{ __("Please select category") }}
@foreach($categories as $category)
{{ $category->title }}
@endforeach
{{__('Product Subategory:')}}
*
{{ __('Please Select') }}
{{__('Childcategory:')}}
{{ __('Please choose') }}
{{ __("Also in :") }}
@foreach($categories as $category)
id,old('other_cats')) ? "selected" : "" }} value="{{ $category->id }}">{{ $category->title }}
@endforeach
{{ __("If in list primary category is also present then it will auto remove from this after create product.") }}
{{ __('Product Tags:') }}
{{ __('Select Size chart : ') }}
{{ __('None') }}
@foreach ($template_size_chart as $chartoption)
id ? "selected" : "" }} value="{{ $chartoption->id }}">{{ $chartoption->template_name }} ({{ $chartoption->template_code }})
@endforeach
{{ __("Product tag") }} {{__('in')}} ({{ app()->getLocale() }}) :
{{ __("Product tag text color") }} :
{{ __("Product tag background color") }} :
{{ __("Model No:") }}
{{__('HSN/SAC :')}}
*
{{ __("SKU:") }}
{{__("Price:")}}
*
{{__("Offer Price:")}}
{{__('Tax:')}}
*
({{__("This tax % will add in given price.")}})
{{__("Tax name:")}}
*
{{__("Product Thumbnail Image:")}}
*
{{ __('Upload') }}
{{ __("Choose file") }}
{{__("Please select product thumbnail")}}
{{__("Product Hover Thumbnail Image:")}}
*
{{ __('Upload') }}
{{ __("Choose file") }}
{{__("Please select product hover thumbnail")}}
{{__('Other Product Images:')}}
*
{{ __('Upload') }}
{{__("Multiple images can be choosen")}}
{{__("Multiple images can be choosen")}}
{{__("Downloadable Product File:")}}
*
{{__("Max file size is 50 MB")}}
{{__("Status")}} :
{{ __('Toggle the product status') }}
{{ __('Free Shipping :') }}
{{ __('Toggle to allow free shipping on product.') }}
{{ __('Cancel available :') }}
{{ __('Toggle to allow product cancellation on order.') }}
{{ __('Cash on delivery available :') }}
{{ __('Toggle to allow COD on product.') }}
{{ __('Return Available :') }}
{{ __('Please choose an option') }}
{{ __('Return Available') }}
{{ __('Return Not Available') }}
({{ __('Please choose an option that return will be available for this product or not') }})
{{__('Select Return Policy:')}}
*
{{ __('Please select return policy') }}
@foreach(App\admin_return_product::where('status','1')->get() as $policy)
id ? "selected" : "" }} value="{{ $policy->id }}">{{ $policy->name }}
@endforeach
{{ __("Reset")}}
{{ __("Create")}}
@endsection @section('custom-script') @endsection