@extends('admin.master', ['menu' => 'products', 'submenu' => 'product']) @section('title', isset($title) ? $title : '') @section('content')
{{ __('Edit Product')}}
{{ __('Home')}}
{{ __('Product Edit')}}
{{ __('English')}}
{{ __('France')}}
{{ __('Product')}}
{{ __('All Products')}}
@csrf
{{ __('Product Name')}}
{{--
{{ __('Brand Name')}}
{{__('---SELECT A BRAND---')}}
@foreach(Brnad() as $item)
id == $product->Brand_Id ? 'selected' : ''}}>{{$item->en_BrandName}}
@endforeach
--}}
{{ __('Category Name')}}
{{__('---SELECT A CATEGORY---')}}
@foreach(Category() as $item)
id == $product->Category_Id ? 'selected' : ''}} >{{$item->en_Category_Name}}
@endforeach
{{ __('Item Tag')}}
{{__('---Select item---')}}
@foreach ($item_tags as $it)
name == $product->ItemTag ? 'selected' : ''}}>{{$it->name}}
@endforeach
{{ __('Product Tag')}}
{{__('---SELECT A PRODUCT TAG---')}}
@foreach($tags as $tag)
name, $product->id)}}>{{$tag->name}}
@endforeach
{{--
{{ __('Product Color')}}
@foreach($colors as $item)
id, $item->id) == 1 ? 'selected' : ''}}>{{$item->Name}}
@endforeach
--}} {{--
{{ __('Product Size')}}
@foreach($sizes as $item)
id, $item->id) == 1 ? 'selected' : ''}}>{{$item->Size}}
@endforeach
--}}
{{ __('Quantity')}}
{{ __('Price')}}
{{ __('Discount')}}
{{ __('Discount Price')}}
{{ __('About')}}
{!! clean($product->en_About) !!}
{{ __('Description')}}
{!! clean($product->en_Description) !!}
{{ __('ShippingReturn')}}
{!! clean($product->en_ShippingReturn) !!}
{{ __('AdditionalInformation')}}
{!! clean($product->en_AdditionalInformation) !!}
{{ __('Primary Image').__('Accept: JPG,PNG,SVG')}}
{{ __('Image 2')}}
{{ __('Image Gallery Images').__('Accept: JPG,PNG,SVG')}}
{{ __('Image 3')}}
{{ __('Image 4')}}
Status == 1 ? 'checked' : ''}} name="status" class="custom-control-input" id="customSwitch1">
{{ __('Status')}}
Featured_Product == 1 ? 'checked' : ''}} name="feature" class="custom-control-input" id="customSwitch2">
{{ __('Featured Product')}}
Best_Selling == 1 ? 'checked' : ''}} name="best_sale" class="custom-control-input" id="customSwitch3">
{{ __('Best Selling')}}
On_Sale == 1 ? 'checked' : ''}} name="on_sale" class="custom-control-input" id="customSwitch4">
{{ __('On Sale')}}
New_Arrival == 1 ? 'checked' : ''}} name="on_arrival" class="custom-control-input" id="customSwitch5">
{{ __('New Arrival')}}
{{ __('Category Create')}}
{{ __('Product Name')}}
{{ __('About')}}
{{ $product->fr_About }}
{{ __('Description')}}
{!! clean($product->fr_Description) !!}
{{ __('ShippingReturn')}}
{!! clean($product->fr_ShippingReturn) !!}
{{ __('AdditionalInformation')}}
{!! clean($product->fr_AdditionalInformation) !!}
{{ __('Update')}}
@push('post_scripts') @endpush @endsection