@extends('layouts.app') @section('title', 'WHMCS Admin - Edit Product') @section('page-title', 'Edit Product') @section('breadcrumb') Dashboard Products Edit @endsection @section('operation') @endsection @section('content') @if ($errors->any())
There were some problems with your submission:
@endif
@csrf @method('PUT')
Basic Information
This will be displayed to customers
Unique product identifier
Brief description of the product
Detailed information shown on product page
Pricing Configuration
Product Features
@php $features = old('features', $product->features->pluck('feature')->toArray()); @endphp @if(count($features) > 0) @foreach($features as $feature)
@endforeach @else
@endif
Add key features that will be displayed to customers
Product Status
Active: Visible and orderable
Inactive: Not orderable
Hidden: Not visible to customers
featured) ? 'checked' : '' }}>
Display prominently on homepage
auto_setup) ? 'checked' : '' }}>
Automatically provision after payment
Stock Management
track_stock) ? 'checked' : '' }}>
Alert when stock falls below this number
allow_backorders) ? 'checked' : '' }}>
Allow orders when out of stock
SEO Settings
Recommended: 50-60 characters
Recommended: 150-160 characters
Auto-generated from product name if empty
Product Image
Recommended: 800x600px, max 2MB
@if ($product->image_url)
Product Image Preview
@else @endif
{{-- --}} @endsection @push('scripts') @endpush