@extends('layouts.app') @section('title', isset($product) ? 'Edit Product' : 'Add Product') @section('page-title', isset($product) ? 'Edit Product' : 'Add Product') @section('content')
@csrf @if(isset($product)) @method('PUT') @endif {{-- Basic Info --}}

Basic Information

@error('name')

{{ $message }}

@enderror
{{-- Pricing & GST --}}

Pricing & GST

Required for GST compliance

{{-- Price preview --}}

Price Summary

Base: GST (): Total:
{{-- Inventory --}}

Inventory

{{-- Image & Status --}}

Image & Status

@if(isset($product) && $product->image_url)
@endif
{{-- Actions --}}
Cancel
@endsection @push('scripts') @endpush