{{-- General Information --}}
{{ trans('update.general_information') }}
@include('design_1.panel.includes.locale.locale_select',[
'itemRow' => !empty($landingComponent) ? $landingComponent : null,
'withoutReloadLocale' => false,
'extraClass' => ''
])
{{ trans('update.section_title') }}
{{-- Checked Items --}}
@if(!empty($contents) and !empty($contents['checked_items']) and count($contents['checked_items']))
@foreach($contents['checked_items'] as $sKey => $itemData)
@if($sKey != 'record')
@include('landingBuilder.admin.components.manage.multi_tab_image_video_placeholder.checked_item',['itemKey' => $sKey, 'checkedItemData' => $itemData])
@endif
@endforeach
@endif
@if(!empty($contents) and !empty($contents['image_video_content']) and count($contents['image_video_content']))
@foreach($contents['image_video_content'] as $sKey => $contentItemDataRow)
@if($sKey != 'record')
@include('landingBuilder.admin.components.manage.multi_tab_image_video_placeholder.image_video_content',['itemKey' => $sKey, 'contentItemData' => $contentItemDataRow])
@endif
@endforeach
@endif