@extends('layouts.app') @section('title', 'Edit Product') @section('content')

Edit Product

← Back to Products
@csrf @method('PUT')
@error('name')

{{ $message }}

@enderror
@error('sku')

{{ $message }}

@enderror
@error('product_type')

{{ $message }}

@enderror
@if($product->bundle_items) @foreach($product->bundle_items as $index => $item)
@endforeach @endif

Select products and quantities that make up this bundle

@error('price')

{{ $message }}

@enderror
@error('stock')

{{ $message }}

@enderror
@error('description')

{{ $message }}

@enderror
is_active) ? 'checked' : '' }} class="rounded border-gray-300 dark:border-gray-600 dark:bg-gray-700 text-blue-600 focus:ring-blue-500">
Cancel
@endsection