@extends('layouts.app') {{-- Use your main layout file --}} @section('title', 'Add New Conventional Product') @section('content') {{-- Back Navigation & Title --}}
{{-- Link back to product index or dashboard --}} ← Back to Products List

Add New Conventional Product

{{-- Form Container --}}
{{-- Form points to admin.products.store (no campaign parameter needed in route) --}}
@csrf {{-- Campaign Selection Dropdown --}}
@error('campaign_id')

{{ $message }}

@enderror
{{-- Product Name --}}
@error('name')

{{ $message }}

@enderror
{{-- Product Type --}}
@error('type')

{{ $message }}

@enderror
{{-- Product Description --}}
@error('description')

{{ $message }}

@enderror
{{-- Price Field Example --}}
@error('price')

{{ $message }}

@enderror
{{-- Submit Button --}}
{{-- End Form Container --}} @endsection