{{-- 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['testimonials']) and count($contents['testimonials']))
@foreach($contents['testimonials'] as $sKey => $itemData)
@if($sKey != 'record')
@php
$selectedTestimonialId = (!empty($itemData) and !empty($itemData['testimonial_id'])) ? $itemData['testimonial_id'] : null;
$selectedTestimonial = (!empty($selectedTestimonialId) and !empty($testimonials) and count($testimonials)) ? $testimonials->where('id', $selectedTestimonialId)->first() : null;
@endphp
@include('landingBuilder.admin.components.manage.sliding_testimonials_2_rows.testimonial',['itemKey' => $sKey, 'selectedTestimonialItem' => $selectedTestimonial])
@endif
@endforeach
@endif