{{-- 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') }}
{{-- Organizations --}}
@if(!empty($contents) and !empty($contents['specific_organizations']) and count($contents['specific_organizations']))
@foreach($contents['specific_organizations'] as $sKey => $itemData)
@if($sKey != 'record')
@php
$selectedOrganizationId = (!empty($itemData) and !empty($itemData['organization_id'])) ? $itemData['organization_id'] : null;
$selectedOrganization = (!empty($selectedOrganizationId) and !empty($organizations) and count($organizations)) ? $organizations->where('id', $selectedOrganizationId)->first() : null;
@endphp
@include('landingBuilder.admin.components.manage.organizations.organization',['itemKey' => $sKey, 'selectedOrganizationItem' => $selectedOrganization])
@endif
@endforeach
@endif