@extends('layouts.app') @section('title', 'Contact Us') @section('content')
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
Please fix the highlighted fields and submit again.
@endif

Get In Touch

Have a question about our captivating exhibitions, talented artists, or exquisite artworks? Whether you're curious about upcoming shows, artist inspirations, pricing, private viewings, or acquisitions, we are here to help.

    @if(!empty($contact?->address))
  • Address {!! nl2br(e($contact->address)) !!}
  • @endif @if(!empty($contact?->phone))
  • Phone {{ $contact->phone }}
  • @endif @if(!empty($contact?->email))
  • Email {{ $contact->email }}
  • @endif

Send Us A Message

Complete the form below and we will respond shortly.

@csrf
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('phone') {{ $message }} @enderror
@error('message') {{ $message }} @enderror
@if(!empty($contact?->map_embed))
{!! $contact->map_embed !!}
@endif @if(!empty($pageContents['contact']->content))
{!! html_entity_decode($pageContents['contact']->content) !!}
@endif @endsection