@extends('layouts.app') @section('title', 'Add New Product') @section('subtitle', 'Create a new product listing') @section('content')

Product Information

Fill in the details for your new product listing

@csrf
@error('name')

{{ $message }}

@enderror
@error('description')

{{ $message }}

@enderror
@error('price')

{{ $message }}

@enderror
@error('quantity')

{{ $message }}

@enderror
@error('category')

{{ $message }}

@enderror

Upload up to 5 images of your product (JPEG, PNG, JPG, GIF, max 2MB each)

@error('images.*')

{{ $message }}

@enderror
Cancel

Product Submission Process

  • Products are saved as drafts initially
  • You can submit for admin approval when ready
  • Approved products will be visible in the marketplace
  • Ensure all information is accurate before submission
@endsection