@extends('frontend.layouts.user_panel') @section('panel_content')

{{ translate('Update your product') }}

@csrf
@php $pos_addon = \App\Addon::where('unique_identifier', 'pos_system')->first(); @endphp @if ($pos_addon != null && $pos_addon->activated == 1)
@endif @php $refund_request_addon = \App\Addon::where('unique_identifier', 'refund_request')->first(); @endphp @if ($refund_request_addon != null && $refund_request_addon->activated == 1)
@endif
{{translate('Product Images')}}
{{ translate('Browse')}}
{{ translate('Choose File') }}
{{ translate('Browse')}}
{{ translate('Choose File') }}
{{--
@if(is_array(json_decode($product->photos))) @foreach (json_decode($product->photos) as $key => $photo)
@endforeach @endif
--}} {{--
@if ($product->thumbnail_img != null)
@endif
--}}
{{translate('Product Videos')}}
{{translate('Product Variation')}}

{{ translate('Choose the attributes of this product and then input values of each attribute') }}


@foreach (json_decode($product->choice_options) as $key => $choice_option)
{{-- --}}
@endforeach
{{translate('Product price + stock')}}

{{translate('Product Description')}}
{{translate('PDF Specification')}}
{{ translate('Browse')}}
{{ translate('Choose File') }}
{{translate('SEO Meta Tags')}}
{{ translate('Browse')}}
{{ translate('Choose File') }}
{{translate('Shipping Configuration')}}
@if (get_setting('shipping_type') == 'product_wise_shipping')
@else

{{ translate('Shipping configuration is maintained by Admin.') }}

@endif
{{translate('Low Stock Quantity Warning')}}
{{translate('Stock Visibility State')}}
{{translate('Cash On Delivery')}}
@if (get_setting('cash_payment') == '1')
@else

{{ translate('Cash On Delivery activation is maintained by Admin.') }}

@endif
{{translate('Estimate Shipping Time')}}
Days
{{translate('VAT & Tax')}}
@foreach(\App\Tax::where('tax_status', 1)->get() as $tax) @php $tax_amount = 0; $tax_type = ''; foreach($tax->product_taxes as $row) { if($product->id == $row->product_id) { $tax_amount = $row->tax; $tax_type = $row->tax_type; } } @endphp
@endforeach
@endsection @section('script') @endsection