Create Product @csrf Name Slug Description {{ old('description') }} Active Purchase Type Subscription One-Time Purchase Generate License Key on Purchase Multi-Tier (offers different subscription levels) @if ($errors->has('plans')) {{ $errors->first('plans') }} @endif Pricing Options Add Tier @foreach ($planRows as $index => $plan) @include('admin.product._plan_fields', [ 'index' => $index, 'plan' => $plan, 'heading' => old('is_tiered', true) ? 'Tier ' . ($index + 1) : 'Price', ]) @endforeach Save