{{-- General Information --}}
{{ trans('update.general_information') }}
@include('design_1.panel.includes.locale.locale_select',[
'itemRow' => !empty($landingComponent) ? $landingComponent : null,
'withoutReloadLocale' => false,
'extraClass' => ''
])
{{-- Upper Call to Action --}}
{{ trans('update.upper_call_to_action') }}
{{-- Main Content --}}
{{ trans('update.main_content') }}
@if(!empty($contents) and !empty($contents['featured_courses']) and count($contents['featured_courses']))
@foreach($contents['featured_courses'] as $sKey => $featuredData)
@if($sKey != 'record')
@php
$course = \App\Models\Webinar::query()->find($featuredData['course']);
@endphp
@include('landingBuilder.admin.components.manage.sliding_courses_hero.course_item',['itemKey' => $sKey, 'featuredCourse' => $featuredData])
@endif
@endforeach
@endif