@extends('layouts.admin') @section('title', 'Edit Product') @section('content')
← Back to Product Catalog

Edit Product: {{ $product->name }}

@csrf @method('PUT')
/product/

Product Variants (Sizes, Pricing & Inventory) 📦 Total Stock: {{ $product->stock }} units

Manage size options with specific selling prices, MRP compare prices, and inventory levels.

@php $variants = $product->variants; @endphp @if($variants && $variants->count() > 0) @foreach($variants as $index => $var) @endforeach @else @endif
Variant Size * Price (₹) * MRP / Compare (₹) Stock Units * Default Action
is_default ? 'checked' : '' }}>

Search Engine Optimization (SEO) & Social Meta

Customize how this product appears on Google Search results and social media shares (Facebook, WhatsApp, Twitter).

D https://divnedrops.com › product › {{ $product->slug }}
{{ $product->meta_title ?? ($product->name . ' — Divine Drops Luxury Skincare') }}
{{ $product->meta_description ?? ($product->description ?? 'Buy 100% natural Indian skincare online at Divine Drops. Free shipping on orders over ₹499.') }}
Recommended: 50-60 characters
Comma-separated keywords
Recommended: 150-160 characters

Product Images & Media Gallery

{{ $product->name }}
Select image file from computer
@if($product->image_alt) Hover @else
No image
@endif
Select hover photo file
@php $gallery = is_array($product->gallery) ? $product->gallery : array_filter([$product->image, $product->image_alt]); @endphp @if(!empty($gallery))
@foreach($gallery as $gImg)
Gallery
@endforeach
@endif
Cancel
@endsection