@if (isset($home_sections->top_footer_section) && $home_sections->top_footer_section == 1)
@if (isset($userFooterData->logo)) Footer Logo @endif @if (!empty($userFooterData->about_company))

{!! replaceBaseUrl($userFooterData->about_company) ?? null !!}

@endif
@if (count($userFooterQuickLinks) > 0)

{{ $keywords['Quick_Links'] ?? 'Quick Links' }}

    @foreach ($userFooterQuickLinks as $quickLinkInfo)
  • {{ convertUtf8($quickLinkInfo->title) }}
  • @endforeach
@endif @if (count($userFooterRecentBlogs) > 0)

{{ $keywords['Latest_Blogs'] ?? 'Latest Blogs' }}

    @foreach ($userFooterRecentBlogs as $footerRecentBlog)
  • {{ strlen($footerRecentBlog->title) > 30 ? mb_substr($footerRecentBlog->title, 0, 30, 'UTF-8') . '...' : $footerRecentBlog->title }}
  • @endforeach
@endif

{{ $keywords['newsletter'] ?? 'NEWSLETTER' }}

{!! replaceBaseUrl($userFooterData->newsletter_text ?? null) !!}

@csrf
@if ($userBs->is_recaptcha == 1)
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!} @error('g-recaptcha-response')

{{ $message }}

@enderror
@endif
  • {{ $keywords['Follow'] ?? 'Follow' }}
  • @if (isset($social_medias)) @foreach ($social_medias as $social_media)
  • @endforeach @endif
@endif @if (isset($home_sections->copyright_section) && $home_sections->copyright_section == 1)
{!! replaceBaseUrl($userFooterData->copyright_text ?? null) !!}
@endif