@extends('layouts.app') @section('title', 'Create Product Master - Quotation App') @section('styles') @endsection @section('content')

Create New Product Master

Define the main product with basic details, image, and accessories

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

Basic Information

@error('product_name'){{ $message }}@enderror
Accepted formats: JPG, PNG, GIF (Max 2MB) @error('product_image'){{ $message }}@enderror
@error('note'){{ $message }}@enderror

Accessories

✓ Standard Accessories

â—‡ Optional Accessories

📋 Default Specifications Template

Define specification names AND units here. Users will auto-populate these when creating product models.

Specification Name
Unit (e.g. MM, KG, HP)
Cancel
@endsection