@extends('frontend.layouts.app') @section('content') @if(Auth::user()->user_type == 'seller') @include('frontend.inc.seller_side_nav') @elseif(Auth::user()->user_type == 'customer') @include('frontend.inc.customer_side_nav') @endif {{ translate('Update Your Product') }} {{ translate('Home') }} {{ translate('Dashboard') }} {{ translate('Products')}} {{ translate('Edit Product') }} @csrf {{ translate('General') }} {{ translate('Product Name') }} * {{ translate('Product Category') }} * @foreach($categories as $category) {{ __($category->name) }} @endforeach {{ translate('Product SubCategory') }} * {{ translate('Product SubSubCategory') }} {{ translate('Product Brand') }} @foreach (\App\Brand::all() as $brand) id == $product->brand_id) selected @endif>{{ $brand->name }} @endforeach {{ translate('Product Unit') }} * {{ translate('Condition') }} * conditon == 'new') selected @endif>{{ translate('New') }} conditon == 'used') selected @endif>{{ translate('Used') }} {{ translate('Location') }} * {{ translate('Product Tag') }} * {{ translate('Images') }} {{ translate('Main Images') }} * @foreach (json_decode($product->photos) as $key => $photo) @endforeach {{ translate('Choose image') }} {{ translate('Add More') }} {{ translate('Thumbnail Image') }} * @if ($product->thumbnail_img != null) @endif {{ translate('Choose image') }} {{ translate('Videos') }} {{ translate('Video From') }} video_provider == 'youtube') selected @endif>{{ translate('Youtube') }} video_provider == 'dailymotion') selected @endif>{{ translate('Dailymotion')}} video_provider == 'vimeo') selected @endif>{{ translate('Vimeo') }} {{ translate('Video URL') }} {{ translate('Meta Tags') }} {{ translate('Meta Title') }} {{ translate('Description')}} {{ $product->meta_description }} {{ translate('Meta Image') }} @if ($product->meta_img != null) @endif {{ translate('Choose image') }} {{ translate('Price') }} {{ translate('Unit Price') }} * {{ translate('Description')}} {{ translate('Description')}} {{ $product->description }} {{ translate('PDF Specification')}} {{ translate('PDF')}} {{ translate('Choose PDF')}} {{ translate('Save') }} @endsection @section('script') @endsection