The Gardeners’ Retreat
Our cafe is a lovely place to enjoy a lazy light lunch with a chilled glass of wine or coffee.
Read More
The Hatton Estate offers a range of restaurants and cafes to suit all tastes, from a full home cooked meal, to a tempting afternoon tea, morning coffee and cake or a light lunch, all complemented by our range of hot and cold beverages
5 minutes away from both the Midlands Motorway network and Warwick Parkway, with it’s frequent train service to London and Birmingham; 15 minutes from Birmingham Airport and the NEC. A great location for the 21st Century hospitality.
var urlInput = document.getElementById("ci_consenturl");
if (urlInput != null && urlInput != 'undefined') {
urlInput.value = encodeURI(window.location.href);
}
function checkbox_Clicked(element) {
document.getElementById(element.id + "_unchecked").value = !element.checked;
}
function validate_signup(frm, showAlert) {
var emailAddress = frm.email ? frm.email.value : "";
var smsNumber = frm.MOBILENUMBERID ? frm.MOBILENUMBERID.value : "";
var errorString = '';
if (frm.email && (emailAddress == '' || emailAddress.indexOf('@') == -1)) {
errorString = 'Please enter your email address';
}
var isError = false;
if (errorString.length > 0) {
isError = true;
if (showAlert) alert(errorString);
}
return !isError;
}