Jake Vanderwerf
2026-06-05 f383c3a4325bc173b6f9676274bc19694be6f9c0
forms/contact.php
@@ -15,10 +15,12 @@
            'We\'ll get back to you as soon as we can - usually pretty quick (unless it\'s a Monday or a Tuesday)'
        ],
        'email_subject' => '[CONTACT]',
        'preheader' => 'New message with the team at Legacy. Respond to this email with additional details.',
        'fields'        => [
            'first_name'    => [
                'type'  => 'text',
                'label' => 'First Name',
                'autocomplete' => 'given-name',
                'required' => true,
                'section'   => 'about_you',
            ],
@@ -26,11 +28,13 @@
                'type'  => 'text',
                'label' => 'Last Name',
                'required' => true,
                'autocomplete'=> 'family-name',
                'section'   => 'about_you',
            ],
            'email'         => [
                'type'  => 'email',
                'label' => 'Email',
                'autocomplete'  => 'email',
                'required' => true,
                'section'   => 'about_you',
            ],
@@ -38,6 +42,7 @@
                'type'  => 'tel',
                'label' => 'Phone',
                'required' => true,
                'autocomplete'  => 'tel',
                'section'   => 'about_you',
            ],
            'contact'       => [
@@ -52,7 +57,6 @@
            ],
            'message'   => [
                'type'  => 'textarea',
                'quill' => true,
                'label' => 'What do you want to say?'
            ]
        ]