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

Add Product Model

Select a main product, then add a new model with specifications and pricing

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

📦 Step 1: Select Main Product

@error('product_master_id'){{ $message }}@enderror

✓ Main Product Info

Note: -
Standard Accessories: -
Optional Accessories: -
@error('product_model'){{ $message }}@enderror
@error('price'){{ $message }}@enderror

📋 Step 3: Manage Specifications

In multiple mode, click "Load Template" above to set specification columns. Edit values directly in the table.

Specification Name Value Unit
Cancel
@endsection @section('scripts') @endsection