@section('title', __('Inventory Item'))
{{__('Add Saleable Item')}}
@csrf @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Create Product
{{__('Product Type')}}
@php $purchaseTypes = collect([ (object)['id' => 'No', 'name' => __('No')], (object)['id' => 'Yes', 'name' => __('Yes')], ]); @endphp
Product Variant
is_variant ?? '') ? 'checked' : '' }}> This product has options, like size or color

Choose the attributes of this product and then input values of each attribute
Variant Price
{{--
Product Card Preview
--}}
@php $statusOptions = collect([ (object)['id' => 'Published', 'name' => __('Published')], (object)['id' => 'Draft', 'name' => __('Draft')], ]); @endphp
{{-- --}}
Upload your Product Photo
{{-- --}}
@push('scripts') @endpush