@extends('layouts.bootstrap') @section('title', 'Create Product') @section('header')

Create Product

Back to Products @endsection @section('content')
Quick Product Creation

Start by entering just the product name - you can add the remaining details later!

  • Required now: Product Name
  • Optional now: Category, Subcategory, Country, Price, Description
  • Complete later: Edit the product anytime to add missing details
Step 1: Basic Product Information
@csrf
@error('name')
{{ $message }}
@enderror
This is the only required field to get started!
Optional Details (can be added later)
@error('category_id')
{{ $message }}
@enderror
@error('subcategory_id')
{{ $message }}
@enderror
@error('country_of_origin')
{{ $message }}
@enderror
@error('measurement_unit')
{{ $message }}
@enderror
$ @error('price')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
Cancel
You can complete missing details after creation
@endsection @push('scripts') @endpush