@extends('admin.layouts.inventory') @section('title', isset($sku) ? 'Edit SKU' : 'New SKU') @section('content')
@csrf @if (isset($sku)) @method('PUT') @endif @if (isset($sku))
@else

Select an item, then optionally set brand and variant name. A variant record is created when you save the SKU.

@endif
@if (isset($sku))
@endif
@include('admin.inventory.partials.form_actions', ['label' => isset($sku) ? 'Save changes' : 'Create SKU'])
@endsection