@extends('layouts.admin') @section('content') @php($editing = $product->exists)

Catalog

{{ $editing ? 'Edit product' : 'Add product' }}

Save as a draft while you work, or choose Published to put the product on the public site immediately. No separate content-approval step is required.

@csrf @if($editing) @method('PUT') @endif

Primary image

Choose an existing image, upload one here, or paste a direct HTTPS image link. A new upload/link is automatically added to Media Library and selected for this product.

Only add images HMS has permission to publish. Alt text is required for accessibility when adding a new image.

@if($product->primaryMedia) {{ $product->primaryMedia->alt_text }} @endif
Categories
@foreach($categories as $category) @endforeach
Related strains

Choose any strains that should be associated with this product.

@foreach($strains as $strain) @endforeach
Back
@if($editing)
@csrf @method('DELETE')
@endif @endsection