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