@extends('layouts.admin') @section('styles') @endsection @section('content')
{{ csrf_field() }} @include('includes.admin.form-both')
1

{{ __('Mandatory Data') }}

@component('admin.components.input-localized', ['required' => true, 'from' => $data]) @slot('name') name @endslot @slot('placeholder') {{ __('Enter Product Name') }} @endslot @slot('value') name @endslot {{ __('Product Name') }}* @endcomponent

{{ __('Product Affiliate Link') }}* {{ __('(External Link)') }}

{{ __('Category') }}*

{{ __('Product Current Price') }}* ({{ __('In') }} {{ $sign->name }})

{{ __('Product Sku') }}*

{{ __('Display in Stores') }}*

@foreach ($stores as $store)
@endforeach
2

{{ __('Important Data') }}

{{ __('Sub Category') }}

{{ __('Child Category') }}

{{ __('Feature Image Source') }}*

{{ __('Product Gallery Images') }}

{{ __('Set Gallery') }}
product_condition != 0 ? 'checked' : '' }}>

{{ __('Product Condition') }}*

photo, FILTER_VALIDATE_URL) ? 'style="display:none"' : '' !!}>

{{ __('Feature Image') }}

{{ __('Upload Image Here') }}
@component('admin.components.input-localized', ['from' => $data, 'type' => 'richtext']) @slot('name') details @endslot @slot('value') details @endslot {{ __('Product Description') }} @endcomponent
@component('admin.components.input-localized', ['from' => $data, 'type' => 'richtext']) @slot('name') policy @endslot @slot('value') policy @endslot {{ __('Product Buy/Return Policy') }} @endcomponent
3

{{ __('Extra Data') }}

  • ship != null ? 'checked' : '' }}>
@component('admin.components.input-localized', ['from' => $data]) @slot('name') ship @endslot @slot('placeholder') {{ __('Estimated Shipping Time') }} @endslot @slot('value') ship @endslot {{ __('Product Estimated Shipping Time') }} @endcomponent
  • size) ? 'checked' : '' }}>
@if (!empty($data->size)) @foreach ($data->size as $key => $data1)
@endforeach @else
@endif
{{ __('Add More Size') }}
  • color) ? 'checked' : '' }}>
@if (!empty($data->color))

{{ __('Product Colors') }}

{{ __('(Choose Your Favorite Colors)') }}

@foreach ($data->color as $key => $data1)
@endforeach
{{ __('Add More Color') }}
@else

{{ __('Product Colors') }}

{{ __('(Choose Your Favorite Colors)') }}

{{ __('Add More Color') }}
@endif
measure == null ? '' : 'checked' }}>

{{ __('Product Measurement') }}

{{ __('Product Previous Price') }} {{ __('(Optional)') }}

{{ __('Product Stock') }} {{ __('(Leave Empty will Show Always Available)') }}

{{ __('Youtube Video URL') }} {{ __('(Optional)') }}

meta_tag != null || strip_tags($data->meta_description) != null ? 'checked' : '' }}>
@component('admin.components.input-localized', ['from' => $data, 'type' => 'tags']) @slot('name') meta_tag @endslot @slot('value') meta_tag @endslot {{ __('Meta Tags') }} @endcomponent
@component('admin.components.input-localized', ['from' => $data, 'type' => 'textarea']) @slot('name') meta_description @endslot @slot('placeholder') {{ __('Details') }} @endslot @slot('value') meta_description @endslot {{ __('Meta Description') }} @endcomponent
@endsection @section('scripts') @endsection