@if ($subtitle = $shortcode->subtitle)
{!! BaseHelper::clean($subtitle) !!}
@endif
@if ($title = $shortcode->title)
{!! BaseHelper::clean($title) !!}
@endif
@if ($description = $shortcode->description)
{!! BaseHelper::clean($description) !!}
@endif
@php
$primaryButtonLabel = $shortcode->primary_action_label;
$primaryButtonUrl = $shortcode->primary_action_url;
$secondaryButtonLabel = $shortcode->secondary_action_label;
$secondaryButtonUrl = $shortcode->secondary_action_url;
@endphp
@if($primaryButtonLabel && $primaryButtonUrl)
{!! BaseHelper::clean($primaryButtonLabel) !!}
@if($primaryIcon = $shortcode->primary_action_icon)
@endif
@endif
@if($secondaryButtonLabel && $secondaryButtonUrl)
@if($secondaryIcon = $shortcode->secondary_action_icon)
@endif
{!! BaseHelper::clean($secondaryButtonLabel) !!}
@endif
@if ($bottomTitle = $shortcode->bottom_title)
{!! BaseHelper::clean($bottomTitle) !!}
@endif
@if ($brands)
@foreach($brands as $brand)
@continue(! $brandLogo = Arr::get($brand, 'image'))
@endforeach
@endif