@if ($title = $shortcode->title)

{!! BaseHelper::clean($title) !!}

@endif @if ($subtitle = $shortcode->subtitle)
{!! BaseHelper::clean($subtitle) !!}
@endif @if ($description = $shortcode->description)

{!! BaseHelper::clean($description) !!}

@endif @if (($staffName = $shortcode->staff_name) || $shortcode->staff_signature)
{{ $staffName }}
@if ($staffDescription = $shortcode->staff_description)

{{ $staffDescription }}

@endif
@if ($signature = $shortcode->staff_signature)
{{ RvMedia::image($signature, 'signature') }}
@endif
@endif
@if (($firstImage = $shortcode->first_image) || $shortcode->second_image)
@if ($firstImage)
{{ RvMedia::image($firstImage, $title) }}
@endif @if ($secondImage = $shortcode->second_image)
{{ RvMedia::image($secondImage, $title) }}
@endif
@endif