@extends('layouts.app') @section('content')
{{ translate('Edit Digital Product') }}
@csrf
{{translate('General')}}
{{translate('Product Name')}}
{{translate('Category')}}
{{translate('Select an option') }}
@foreach(\App\Category::where('digital', 1)->get() as $category)
{{__($category->name)}}
@endforeach
{{translate('Subcategory')}}
{{translate('Sub Subcategory')}}
{{translate('Product File')}}
{{translate('Tags')}}
{{translate('Images')}}
{{translate('Main Images')}}
@if(is_array(json_decode($product->photos))) @foreach (json_decode($product->photos) as $key => $photo)
@endforeach @endif
{{translate('Thumbnail Image')}}
(290x300)
@if ($product->thumbnail_img != null)
@endif
{{translate('Meta Tags')}}
{{translate('Slug')}}
{{translate('Meta Title')}}
{{translate('Description')}}
{{ $product->meta_description }}
{{ translate('Meta Image') }}
@if ($product->meta_img != null)
@endif
{{translate('Price')}}
{{translate('Unit price')}}
{{translate('Purchase price')}}
{{translate('Tax')}}
$
%
{{translate('Discount')}}
$
%
{{translate('Description')}}
{{translate('Description')}}
{{$product->description}}
@endsection @section('script') @endsection