@extends('backend.admin-master') @section('site-title') {{__('Edit Products')}} @endsection @section('style') @endsection @section('content')
@include('backend/partials/message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

{{__('Edit Products')}}

{{__('All Products')}}
@csrf
{!! $product->description !!}
@if(get_static_option('product_tax_type') == 'individual')
@endif
@php $att_title = unserialize($product->attributes_title); $att_descr = unserialize($product->attributes_description); @endphp @if(!empty($att_title)) @foreach($att_title as $key => $att_title)
@if($key > 0) @endif
@endforeach @else
@endif
@php $work_section_img = get_attachment_image_by_id($product->image,null,true); @endphp @if (!empty($work_section_img))
@endif
{{__('Recommended image size 1920x1280')}}
@php $gallery_images = !empty( $product->gallery) ? explode('|', $product->gallery) : []; @endphp
@foreach($gallery_images as $gl_img) @php $work_section_img = get_attachment_image_by_id($gl_img,null,true); @endphp @if (!empty($work_section_img))
@endif @endforeach
{{__('Recommended image size 1920x1280')}}
@include('backend.partials.media-upload.media-upload-markup') @endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection