@extends('layouts.app') @section('title', isset($product) ? 'Edit Product' : 'Add Product') @section('content')
← Back to Products

{{ isset($product) ? 'Edit Product' : 'Add New Product' }}

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @if(isset($product)) @method('PUT') @endif

Basic Information

Pricing & Inventory

Product Image

Enter a URL to your product image

Settings

Cancel
@endsection