@extends('backend.template.layouts.template-base') @section('title', 'Vital Kitchen - Duplicate ' . $product->name) @section('content')

Duplicate — {{ $product->name }}

@csrf
{{-- Empty product info (null = no prefill) --}} @include('backend.template.product-management.vital-kitchen-products.partials.product-info-fields', [ 'groups' => $groups, 'products' => $products, 'product' => null ]) {{-- Ingredients pre-loaded from original --}} @include('backend.template.product-management.vital-kitchen-products.partials.ingredient-section', [ 'prefillIngredients' => $prefillIngredients, 'prefillGroups' => $prefillGroups, ]) @include('backend.template.product-management.vital-kitchen-products.partials.seo-fields', ['seo' => null])
Cancel
@include('backend.template.product-management.vital-kitchen-products.partials.group-modal') {{-- Confirm Duplicate Modal --}}
@endsection @section('scripts') @include('backend.template.product-management.vital-kitchen-products.partials.ingredient-scripts') @endsection