@extends('admin.layouts.main') @section('title', 'Edit Product') @section('main')

Edit Product

Back to Products
@csrf

@if(isset($product->technical_image) && !is_null($product->technical_image) && json_decode($product->technical_image,true))
@foreach (json_decode($product->technical_image,true) as $timage) Technical Image @endforeach
@endif

@if(isset($product->feature_video) && !is_null($product->feature_video))
@endif

@if(isset($product->technical_video) && !is_null($product->technical_video))
@endif

@if(isset($product->videos) && !is_null($product->videos) && json_decode($product->videos,true))
@foreach (json_decode($product->videos,true) as $timage)
@endforeach
@endif



@if(isset($product->images) && !is_null($product->images) && json_decode($product->images,true))
@foreach (json_decode($product->images,true) as $timage) Product Image @endforeach
@endif
@endsection @section('scripts') @endsection