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

    @if($address = $shortcode->address)
  • {{ $address }}
  • @endif @if($phone = $shortcode->phone)
  • {{ $phone }}
  • @endif @if($email = $shortcode->email)
  • {{ $email }}
  • @endif @if($hours = $shortcode->hours)
  • {{ __('Store Hours:') }} {{ $hours }}
  • @endif
@foreach(range(1, 2) as $i) @if($label = $shortcode->{'button_label_' . $i}) {{ $label }} @if($icon = $shortcode->{'button_icon_' . $i}) @endif @endif @endforeach
@if ($shortcode->show_contact_form && is_plugin_active('contact'))

{{ __('Make Custom Request') }}

{{ __('Must-have pieces selected every month want style Ideas and Treats?') }}

@csrf {!! apply_filters('pre_contact_form', null) !!}
@if (is_plugin_active('captcha')) @if (setting('enable_captcha'))
{!! Captcha::display() !!}
@endif @if (setting('enable_math_captcha_for_contact_form', false))
{!! app('math-captcha')->input(['id' => 'math-group', 'placeholder' => app('math-captcha')->getMathLabelOnly() . ' = ?']) !!}
@endif @endif
{!! apply_filters('after_contact_form', null) !!}
@endif