@extends('backend.template.layouts.template-base') @section('title', 'Product Management - Edit ' . $product->name) @section('content')

Edit {{ $product->name }}

@csrf {{-- ── Product Info ──────────────────────────────────────────────────── --}}

Product Info

@if ($product->image)
Current Image
@else No Image @endif
{{-- ── Pricing Info ──────────────────────────────────────────────────── --}}

Pricing Info

@foreach ($product->pricing as $idx => $price) @endforeach
Default Variant Unit Label MRP * Discount Type Discount Value Selling Price Status Action
is_default ? 'checked' : '' }} onchange="markDefault({{ $idx }})"> ₹{{ number_format($price->selling_price, 2) }}
{{-- ── SEO Settings ──────────────────────────────────────────────────── --}}

SEO Settings

seo && ($product->seo->meta_title || $product->seo->meta_description || $product->seo->schema || $product->seo->h1 || $product->seo->image_alt)) ? 'checked' : '' }}>
Cancel
@endsection @section('scripts') @endsection