@extends('layouts.admin.base') @section('page-title') {{ $plan->name }} Editor @endsection @section('content')
{{ csrf_field() }}
@foreach ($plan->profits_frequency() as $frequency)
@endforeach

first_timer_only) checked @endif name="first_timer_only" value="{{ _TRUE }}" class="form-check-input box" type="checkbox" id="first_timer_only">     is_private) checked @endif name="is_private" value="{{ _TRUE }}" class="form-check-input box" type="checkbox" id="is_private">     is_company) checked @endif name="is_company" value="{{ _TRUE }}" class="form-check-input box" type="checkbox" id="is_company">     recommended) checked @endif name="recommended" value="{{ _TRUE }}" class="form-check-input box" type="checkbox" id="recommended">

is_blackfriday) checked @endif name="is_blackfriday" value="{{ _TRUE }}" class="form-check-input box" type="checkbox" id="is_blackfriday">
Optional: Leave empty to use global settings
Optional: Leave empty to use global settings

@foreach ($payout_options as $option)
hasPayoutOption($option, $plan->payout_options)) checked @endif name="payout_options[]" value="{{ $option->id }}" class="form-check-input box" type="checkbox" id="po_{{ $option->id }}">
@endforeach
@foreach ($plan->referral_levels() as $referral_level)
@endforeach
@foreach ($features as $feature)
hasFeature($feature, $plan->features)) checked @endif name="features[]" value="{{ $feature->id }}" class="form-check-input box" type="checkbox" id="feature_{{ $feature->id }}">
@endforeach
@include('user.plans.components.plan', ['plan_model' => $plan])
@endsection @section('scripts') @endsection