@extends('layouts.app') @section('title', 'Edit Product') @section('content') @php $routePrefix = strtolower(auth()->user()->role->name); @endphp

Edit Product

Update product details using the CRM theme form layout.
Back to Detail
@if($errors->any())
@endif
@csrf @method('PUT')
Product Information
Maintain the core product details and specifications.
@error('brand_name')
{{ $message }}
@enderror
@error('composition')
{{ $message }}
@enderror
@error('dosage_form')
{{ $message }}
@enderror
@error('packing_type')
{{ $message }}
@enderror
@error('pack_size')
{{ $message }}
@enderror
@error('therapeutic_category')
{{ $message }}
@enderror
@if($product->dossier) View current document @endif @error('dossier')
{{ $message }}
@enderror
@error('status')
{{ $message }}
@enderror
Pricing & Compliance
Adjust MRP, GST rates, and regulatory information.
@error('mrp')
{{ $message }}
@enderror
@error('hsn_code')
{{ $message }}
@enderror
Refer to the Indian Customs Tariff for pharma HSN codes.
@php $gstRates = [0, 5, 12, 18, 28]; $selectedGst = (int) old('gst_rate', $product->gst_rate); @endphp @error('gst_rate')
{{ $message }}
@enderror
{{-- Price Preview --}}
Publishing
Role Context {{ \Illuminate\Support\Str::of(auth()->user()->role->name)->replace('_', ' ')->title() }}
Company {{ auth()->user()->company->name ?? env('APP_NAME') }}
Product ID #{{ $product->id }}
Cancel
@endsection @push('script') @endpush