{{-- General Information --}}
{{ trans('update.general_information') }}
@include('design_1.panel.includes.locale.locale_select',[
'itemRow' => !empty($footerItem) ? $footerItem : null,
'withoutReloadLocale' => false,
'extraClass' => ''
])
{{ trans('update.newsletter') }}
{{ trans('update.cta_section') }}
{{ trans('update.contact_info') }}
{{-- links --}}
{{ trans('update.links') }} #1
@if(!empty($contents) and !empty($contents['specific_links']) and count($contents['specific_links']))
@foreach($contents['specific_links'] as $sKey => $footerLinkItemData)
@if($sKey != 'record')
@include('admin.theme.footers.components.footer_1.link_item',['inputNamePrefix' => "contents[specific_links][{$sKey}]", 'footerLinkData' => $footerLinkItemData])
@endif
@endforeach
@endif
{{-- links 2 --}}
{{ trans('update.links') }} #2
@if(!empty($contents) and !empty($contents['specific_links_2']) and count($contents['specific_links_2']))
@foreach($contents['specific_links_2'] as $bKey => $footerLink2ItemData)
@if($bKey != 'record')
@include('admin.theme.footers.components.footer_1.link_item',['inputNamePrefix' => "contents[specific_links_2][{$bKey}]", 'footerLinkData' => $footerLink2ItemData])
@endif
@endforeach
@endif
{{-- links 2 --}}
{{ trans('update.bottom') }}
@php
$socials = getSocials();
if (!empty($socials) and count($socials)) {
$socials = collect($socials)->sortBy('order')->toArray();
}
@endphp