@extends('layouts.admin') @section('title', 'Edit Wholesale Product') @section('content')
{{-- Header --}}

Edit Wholesale Product

Update product details, pricing, and inventory

Back to Products {{ ucfirst($wholesaleProduct->status) }}
{{-- Tabs --}}
@csrf @method('PUT') {{-- Tab: Product Info --}}
{{-- Tab: Images & Videos --}}
{{-- Thumbnail --}}
@if($wholesaleProduct->thumbnail)
Current
@endif
{{-- Gallery --}}

Select multiple images

@if($wholesaleProduct->gallery) @foreach(json_decode($wholesaleProduct->gallery, true) as $galleryPath)
@endforeach @endif
{{-- Video --}}
{{-- Tab: Price & Stock --}}

Wholesale Pricing Tiers

Define quantity-based pricing discounts. Customers buying more pay less per unit.

Min Qty Max Qty Price per Unit
{{-- Tab: Description --}}
@if($wholesaleProduct->pdf_specification)
{{ basename($wholesaleProduct->pdf_specification) }}
@endif
{{-- Tab: Shipping --}}
{{-- Tab: Others --}}
{{-- Tab: SEO --}}

Max 60 characters recommended

Max 160 characters recommended

{{-- Footer Actions --}}
Cancel
@push('scripts') @endpush @endsection