{{-- 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') }}
{{ trans('update.cta_section') }}
{{-- Features --}}
@if(!empty($contents) and !empty($contents['meeting_instructors']) and count($contents['meeting_instructors']))
@foreach($contents['meeting_instructors'] as $sKey => $itemData)
@if($sKey != 'record')
@php
$selectedInstructorId = (!empty($itemData) and !empty($itemData['instructor'])) ? $itemData['instructor'] : null;
$selectedInstructor = (!empty($selectedInstructorId) and !empty($meetingInstructors) and count($meetingInstructors)) ? $meetingInstructors->where('id', $selectedInstructorId)->first() : null;
@endphp
@include('landingBuilder.admin.components.manage.meeting_booking_list.instructor',['itemKey' => $sKey, 'selectedInstructorItem' => $selectedInstructor])
@endif
@endforeach
@endif