@extends('layouts.admin') @section('title', 'Edit ' . $product->name) @section('topbar-title', 'Edit Product') @section('content')

Product Settings

@csrf @method('PATCH')
This is the key sent to ResellerCenter API.

Plan Pricing

@foreach($product->plans->sortBy('cycle_months') as $plan)
@csrf @method('PATCH')
{{ $plan->billing_cycle }}
{{ $plan->cycle_months }} month(s)
@if($plan->is_featured)Featured@endif
@endforeach
@endsection