@extends('layouts.app') @section('title', 'Add Product') @section('content')

Add New Product

Add a new product to your inventory

Product Information
@csrf
@error('name')
{{ $message }}
@enderror
@error('category_id')
{{ $message }}
@enderror
@error('supplier_id')
{{ $message }}
@enderror
BDT
@error('purchase_price')
{{ $message }}
@enderror
BDT
@error('sale_price')
{{ $message }}
@enderror
@error('quantity')
{{ $message }}
@enderror
Help
Product Name: Enter a descriptive name for your product.

Category: Select the appropriate category to organize your products.

Supplier: Choose the supplier for this product.

Prices: Set both purchase and sale prices for profit calculation.

Quantity: Enter the initial stock quantity.
@endsection