@extends('layouts/default') {{-- Page title --}} @section('title') @if ($item->id) {{ trans('admin/components/general.update') }} @else {{ trans('admin/components/general.create') }} @endif @parent @stop {{-- Page content --}} @section('content') @if ($item->id) {{ $item->name }} @endif {{-- Acquisition metadata + qty are all create-only. See accessories/edit for the full rationale. Post-create changes flow through the adjust-quantity modal and land as Order + OrderItem rows. --}} @if (! $item->id) @endif @stop