@extends('admin.layout') @section('title', 'Edit Proprietary Product') @section('content')

Edit: {{ $product->prod_name }}

Update details, image, or pack-size pricing

← Back to Catalog
@csrf
@if($product->prod_img1)
@endif
@if(isset($variants) && $variants->count() > 0)

Available Pack-Size Variants

@foreach($variants as $v) @endforeach
Pack Size Unit Price Cross Price
{{ $v->prod_quantity }} {{ $v->prod_quantity_type }} ₹{{ number_format((float)$v->prod_price, 2) }} ₹{{ number_format((float)$v->prod_cross_price, 2) }}
@endif
@endsection