@php use Botble\Shortcode\Facades\Shortcode; $contactInfo = Shortcode::fields()->getTabsData(['label', 'content'], $shortcode); @endphp
@if($shortcode->show_information_box)
@endif
@if($shortcode->title)
{!! BaseHelper::clean($shortcode->title) !!}
@endif @if($shortcode->description)

{!! BaseHelper::clean($shortcode->description) !!}

@endif {!! $form->renderForm() !!}
@if($shortcode->show_information_box)
{!! BaseHelper::clean($shortcode->contact_title) !!}
    @foreach($contactInfo as $item)
  • {!! BaseHelper::clean($item['label']) !!}

    {!! BaseHelper::clean(nl2br($item['content'])) !!}

  • @endforeach @if($shortcode->show_social_links && ($items = Theme::getSocialLinks()))
  • {{ __('Follow Us:') }}
  • @endif
@endif