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

Add New Product

Create a pharmaceutical product using the CRM theme form layout.
Back to Products
@if($errors->any())
@endif
@csrf
Product Information
Basic details for the pharmaceutical product.
@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
@error('dossier')
{{ $message }}
@enderror
@error('status')
{{ $message }}
@enderror
Pricing & Compliance
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.
@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') }}
Cancel
@endsection @push('script') @endpush