{% extends 'base.html.twig' %}
{% block title %}Contact the CoaguChek Roche Care Centre{% endblock %}
{% block description %}Get in touch with your questions about INR self-testing with a CoaguChek device.{% endblock %}
{% block main %}
<section class="bg-patient text-white position-relative roche-header">
<div class="container-fluid">
<div class="row align-items-center">
<div class="col-lg-4 offset-lg-2 py-5 px-0 order-2 order-lg-1">
<div class="container">
<h1>Get in touch</h1>
<p class="mb-0">We are always happy to help.</p>
</div>
</div>
<div class="col-lg-6 pe-0 order-1 order-lg-2">
<img src="{{ asset('build/images/patient/08-Contact/000-Heroimage_1x.png') }}" srcset="{{ asset('build/images/patient/08-Contact/000-Heroimage_1x.png') }} 1x, {{ asset('build/images/patient/08-Contact/000-Heroimage_2x.png') }} 2x" alt="A woman on the phone reading her drugs instructions" class="w-100" />
</div>
</div>
</div>
</section>
<section class="roche-section__medium">
<div class="container">
<div class="row">
<div class="col-12 col-lg-7">
<h2 class="text-patient">Contact information</h2>
<p>The CoaguChek<sup>®</sup> Roche Care Centre is here to answer your questions.</p>
<p>Call us toll-free at <a href="tel:+1 (877) 426-2482" class="text-patient fw-bold text-nowrap">+1 (877) 426-2482</a> <br>Monday - Friday between 8am and 5pm (EST).</p>
<div class="roche-image roche-image__left">
<img class="img-fluid" src="{{ asset('build/images/patient/08-Contact/01-ContactUs_1x.png') }}" srcset="{{ asset('build/images/patient/08-Contact/01-ContactUs_1x.png') }} 1x, {{ asset('build/images/patient/08-Contact/01-ContactUs_2x.png') }} 2x" alt="A grandfather and his granddaughter looking at a tablet">
</div>
</div>
<div class="col-12 col-lg-5 pt-5 pt-lg-0">
<h2 class="text-patient">Send a message</h2>
{{ form_start(form) }}
<p><small>Fields marked with * must be completed.</small></p>
{{ form_row(form.subject) }}
<div class="row">
<div class="col-md-6">{{ form_row(form.firstname) }}</div>
<div class="col-md-6">{{ form_row(form.lastname) }}</div>
</div>
<div class="row">
<div class="col-md-6">{{ form_row(form.email) }}</div>
<div class="col-md-6">{{ form_row(form.phone) }}</div>
</div>
{{ form_row(form.message) }}
<p>Roche Diagnostics would like to provide you with relevant news and information on our products and promotions. We would also like to ask you about your experiences and opinion.</p>
{{ form_rest(form) }}
<button class="btn btn-patient text-white">{{ button_label|default('Submit') }}</button>
{{ form_end(form) }}
</div>
</div>
</div>
</section>
</div>
{% endblock %}