{{-- General Information --}}
{{ trans('update.general_information') }}
@include('design_1.panel.includes.locale.locale_select',[
'itemRow' => !empty($landingComponent) ? $landingComponent : null,
'withoutReloadLocale' => false,
'extraClass' => ''
])
{{ trans('update.main_content') }}
{{-- Features --}}
@if(!empty($contents) and !empty($contents['subscriptions_plans']) and count($contents['subscriptions_plans']))
@foreach($contents['subscriptions_plans'] as $sKey => $itemData)
@if($sKey != 'record')
@php
$selectedSubscriptionPlanId = (!empty($itemData) and !empty($itemData['plan_id'])) ? $itemData['plan_id'] : null;
$selectedSubscriptionPlan = (!empty($selectedSubscriptionPlanId) and !empty($subscriptionPlans) and count($subscriptionPlans)) ? $subscriptionPlans->where('id', $selectedSubscriptionPlanId)->first() : null;
@endphp
@include('landingBuilder.admin.components.manage.subscription_plans.subscription_plan',['itemKey' => $sKey, 'selectedSubscriptionItem' => $selectedSubscriptionPlan])
@endif
@endforeach
@endif