@extends('layouts.site') @section('title', $page->meta_title ?: 'Home') @section('meta_description', $page->meta_description ?? 'Home page for Hillcrest Living, a supported living provider for older adults aged 65+.') @php use Illuminate\Support\Facades\Storage; $activeSections = $page->sections ->where('is_active', true) ->sortBy('sort_order') ->values(); $heroFallbackImages = [ asset('assets/images/hillcrest-hero-ai-1.png'), asset('assets/images/hillcrest-hero-ai-2.png'), asset('assets/images/hillcrest-hero-ai-3.png'), ]; $heroSection = $activeSections->firstWhere('section_key', 'hero'); $supportServicesSection = $activeSections->firstWhere('section_key', 'home_services'); $approachSection = $activeSections->firstWhere('section_key', 'home_approach'); $referralsSection = $activeSections->firstWhere('section_key', 'home_referrals'); $whyChooseSection = $activeSections->firstWhere('section_key', 'home_why_choose'); $testimonialSection = $activeSections->firstWhere('section_key', 'home_testimonials'); $faqSection = $activeSections->firstWhere('section_key', 'home_faqs'); $approachImage = $approachSection?->media ? Storage::disk($approachSection->media->disk)->url($approachSection->media->path) : asset('assets/images/hillcrest-about-story.png'); $approachImageAlt = $approachSection?->media?->alt_text ?: 'A calm supported living environment at Hillcrest'; $heroSlides = $activeSections ->filter(fn ($section) => in_array($section->section_key, ['hero', 'hero_slide'])) ->values() ->map(function ($section, int $index) use ($heroFallbackImages) { return [ 'title' => $section->heading ?: 'Helping older adults live independently, safely, and with dignity', 'description' => strip_tags((string) $section->body) ?: 'Supported living for older adults (65+) who value independence with day-to-day support.', 'image' => $section->media ? Storage::disk($section->media->disk)->url($section->media->path) : $heroFallbackImages[$index % count($heroFallbackImages)], 'alt' => $section->media?->alt_text ?: 'Supported living at Hillcrest', 'cta_primary_label' => $section->cta_primary_label ?: 'Make a Referral', 'cta_primary_url' => $section->cta_primary_url ?: route('referral.show'), 'cta_secondary_label' => $section->cta_secondary_label ?: 'Speak to Our Team', 'cta_secondary_url' => $section->cta_secondary_url ?: route('contact.show'), ]; }) ->values(); if ($heroSlides->count() < 3) { $heroSlides = collect([ [ 'title' => 'Helping older adults live independently, safely, and with dignity', 'description' => 'At Hillcrest Living, we provide supported living for older adults aged 65+ who want to maintain their independence while receiving the right level of day-to-day support. We focus on low to moderate support needs, creating a safe, comfortable, and empowering environment—without intrusive care.', 'image' => asset('assets/images/hillcrest-hero-ai-1.png'), 'alt' => 'Supported living visual for older adults', 'cta_primary_label' => 'Make a Referral', 'cta_primary_url' => route('referral.show'), 'cta_secondary_label' => 'Speak to Our Team', 'cta_secondary_url' => route('contact.show'), ], [ 'title' => 'Supported Living That Promotes Independence', 'description' => 'Supported living is about having your own space, your own routine, and your own life, with the reassurance that support is available when needed. We help individuals stay in control, build confidence, and remain part of their community.', 'image' => asset('assets/images/hillcrest-hero-ai-2.png'), 'alt' => 'Comfortable supported living accommodation', 'cta_primary_label' => 'Make a Referral', 'cta_primary_url' => route('referral.show'), 'cta_secondary_label' => 'Speak to Our Team', 'cta_secondary_url' => route('contact.show'), ], [ 'title' => 'Practical, non-intrusive support', 'description' => 'We provide practical support including daily routine, medication prompting, shopping, errands, and social engagement. Our focus is helping individuals build confidence, routine, and independence.', 'image' => asset('assets/images/hillcrest-hero-ai-3.png'), 'alt' => 'Safe and comfortable community garden', 'cta_primary_label' => 'Make a Referral', 'cta_primary_url' => route('referral.show'), 'cta_secondary_label' => 'Speak to Our Team', 'cta_secondary_url' => route('contact.show'), ], ]); } $heroRotationMs = (int) ($heroSection?->rotation_interval_ms ?: $activeSections->firstWhere('section_key', 'hero_slide')?->rotation_interval_ms ?: 6000); if ($heroRotationMs < 2000) { $heroRotationMs = 2000; } $serviceIconMap = [ 'daily-routine-support' => 'calendar', 'medication-prompting' => 'clock-3', 'shopping-and-errands-support' => 'shopping-bag', 'appointment-support' => 'clipboard-list', 'light-domestic-support-and-organisation' => 'house', 'social-engagement-and-companionship' => 'users', 'community-access-and-activities' => 'map-pinned', 'budgeting-and-basic-life-admin-support' => 'wallet', ]; $featuredServiceSlugs = [ 'daily-routine-support', 'medication-prompting', 'social-engagement-and-companionship', 'community-access-and-activities', ]; $featuredServices = collect($featuredServiceSlugs) ->map(fn ($slug) => $services->firstWhere('slug', $slug)) ->filter() ->values(); if ($featuredServices->isEmpty()) { $featuredServices = $services->take(4)->values(); } $galleryFallbackImages = collect([ [ 'src' => asset('assets/images/hillcrest-gallery-photo-1.png'), 'alt' => 'Comfortable supported living accommodation at Hillcrest', 'label' => 'Comfortable spaces', ], [ 'src' => asset('assets/images/hillcrest-gallery-photo-2.png'), 'alt' => 'Supported living service environment for older adults', 'label' => 'Daily living support', ], [ 'src' => asset('assets/images/hillcrest-gallery-photo-3.png'), 'alt' => 'Calm Hillcrest living space close to local community', 'label' => 'Calm environments', ], [ 'src' => asset('assets/images/hillcrest-community-photo.png'), 'alt' => 'Older adults supported to stay connected with the community', 'label' => 'Community connection', ], [ 'src' => asset('assets/images/hillcrest-about-story.png'), 'alt' => 'Hillcrest person-centred support in a homely setting', 'label' => 'Person-centred care', ], [ 'src' => asset('assets/images/hillcrest-referral-photo.png'), 'alt' => 'Friendly referral conversation for supported living', 'label' => 'Clear referral pathway', ], [ 'src' => asset('assets/images/faq-support-conversation.png'), 'alt' => 'Support coordinator answering questions with an older adult', 'label' => 'Reassuring guidance', ], [ 'src' => asset('assets/images/faq-accommodation-support.png'), 'alt' => 'Safe and comfortable supported living accommodation', 'label' => 'Safe accommodation', ], ]); $cmsGalleryImages = $homeMedia ->map(fn ($media) => [ 'src' => Storage::disk($media->disk)->url($media->path), 'alt' => $media->alt_text ?: 'Life at Hillcrest Living', 'label' => $media->caption ?: 'Life at Hillcrest', ]) ->values(); $galleryImages = $cmsGalleryImages->isNotEmpty() ? $cmsGalleryImages : $galleryFallbackImages; @endphp @push('meta') @php $org = [ '@context' => 'https://schema.org', '@type' => 'Organization', 'name' => $siteSettings->site_name, 'url' => url('/'), ]; if (filled($siteSettings->contact_email)) { $org['email'] = $siteSettings->contact_email; } if (filled($siteSettings->contact_phone)) { $org['telephone'] = $siteSettings->contact_phone; } if (filled($siteSettings->contact_address)) { $org['address'] = [ '@type' => 'PostalAddress', 'streetAddress' => $siteSettings->contact_address, 'addressCountry' => 'GB', ]; } @endphp @endpush @section('content')

{{ $siteSettings->site_tagline ?? 'Supported living for older adults (65+)' }}

Live independently. Stay supported. Feel at home.

Low to moderate support that feels calm, respectful, and close to home.

Supported Living That Promotes Independence

Supported living is about having your own space, your own routine, and your own life, with the reassurance that support is available when needed.

Unlike traditional care settings, our service helps individuals stay in control of daily life, build confidence and routine, and remain part of their community.

Who We Support

  • Older adults (65+) who are mostly independent but need some support.
  • People who may feel isolated or need regular companionship.
  • Individuals finding daily tasks and routines more challenging.
  • People stepping down from hospital or residential care settings.
  • Those wanting to avoid moving into a care home.

Ideal for individuals who do not require personal care, but benefit from structured support.

{{ $supportServicesSection?->subheading ?: 'Person-Centred Support' }}

{{ $supportServicesSection?->heading ?: 'Our Support Services' }}

{{ $supportServicesSection?->body ? strip_tags($supportServicesSection->body) : 'We provide practical, non-intrusive support, including:' }}

View All Services
@foreach($featuredServices as $service) @php $icon = $serviceIconMap[$service->slug] ?? 'circle-check'; @endphp

{{ $service->title }}

@if($service->summary)

{{ $service->summary }}

@endif
@endforeach

Ready to discuss support?

Helping older adults stay independent, safe, and confident.

Hillcrest provides supported living for older adults who value their independence but need some level of day-to-day support to live safely and confidently.

Our focus is helping individuals build confidence, routine, and independence.

{{ $approachImageAlt }}

Accommodation

Safe, homely spaces that support independence.

{{ $approachSection?->subheading ?: 'Person-Centred. Respectful. Empowering.' }}

{{ $approachSection?->heading ?: 'Our Approach' }}

At Hillcrest, no two individuals are the same. We build support around each person so they can remain in control of daily life.

Personal support plans

Support is built around each person, not a fixed routine.

Respect and choice

We respect independence, preferences, and personal decisions.

Confidence building

We encourage skills, routine, and confidence over time.

Calm environment

We create calm, homely environments that feel reassuring.

Supported living works best when people feel in control of their lives, not managed. That is exactly how we operate.

Our supported living environments are designed to feel safe, comfortable, well-located, and connected to the local community.

Safe and comfortable

Spaces that help residents feel settled and reassured.

Well-located

Close to community links, amenities, and transport.

Private space

Residents have their own private space and daily rhythm.

Living options

Shared or self-contained living options that promote independence.

Supported living typically allows individuals to live in their own tenancy while receiving the right level of day-to-day support.

{{ $referralsSection?->subheading ?: 'Referrals made simple' }}

{{ $referralsSection?->heading ?: 'Referrals' }}

{!! $referralsSection?->body ?: '

We accept referrals from Local Authorities, Social Workers, Healthcare Professionals, and Families/private clients.

Our process is designed for fast response times, clear assessment steps, and smooth onboarding.

' !!}
{{ $referralsSection?->cta_primary_label ?: 'Submit a Referral' }}

{{ $whyChooseSection?->subheading ?: 'Why families choose us' }}

{{ $whyChooseSection?->heading ?: 'Why Choose Hillcrest' }}

{!! $whyChooseSection?->body ?: '
  • Focused on older adults aged 65+.
  • Clear model for low to moderate support needs.
  • Independence-first and culturally aware approach.
  • Flexible support designed for both families and professionals.
' !!}
{{ $whyChooseSection?->cta_primary_label ?: 'Get in Touch Today' }}
@if($testimonials->isNotEmpty())

{{ $testimonialSection?->subheading ?: 'Real experiences' }}

{{ $testimonialSection?->heading ?: 'Trusted by families and professionals' }}

{!! $testimonialSection?->body ?: '

Kind words from residents, families, and referral partners who value calm, respectful support.

' !!}

Ready to feel confident about the next step?

Speak with our team and discover how calm, respectful support can help your loved one feel safe, independent, and at home.

@endif @if($faqs->isNotEmpty())

{{ $faqSection?->subheading ?: 'Frequently asked questions' }}

{{ $faqSection?->heading ?: 'Questions families often ask' }}

{!! $faqSection?->body ?: '

Helpful answers about referrals, accommodation, and how supported living works at Hillcrest.

' !!}
@foreach($faqs->values()->split(2) as $columnIndex => $faqColumn)
{{ $columnIndex === 0 ? 'Support coordinator answering questions with an older adult' : 'Comfortable supported living accommodation and lounge' }}
@foreach($faqColumn as $faq)
{!! $faq->answer !!}
@endforeach
@endforeach
@endif

Gallery

Life at Hillcrest Living

A glimpse of calm spaces, supportive conversations, and community-focused living for older adults in the UK.

Open Gallery

Want to see more?

Explore our supportive environments, accommodation, and everyday life at Hillcrest Living.

Arrange a conversation
@if($posts->isNotEmpty())

Insights and updates

News and updates

Helpful updates on supported living, referrals, and accommodation in the UK.

All News
@php $featuredPost = $posts->first(); $supportingPosts = $posts->skip(1); @endphp
@if($featuredPost)
@if($featuredPost->cover) {{ $featuredPost->cover->alt_text ?: $featuredPost->title }}
@else
@endif
Featured insight
@if($featuredPost->category) {{ $featuredPost->category->name }} @endif

{{ $featuredPost->title }}

@if($featuredPost->excerpt)

{{ $featuredPost->excerpt }}

@endif Read featured article
@endif
@foreach($supportingPosts as $post)
@if($post->cover)
{{ $post->cover->alt_text ?: $post->title }}
@endif
@if($post->category) {{ $post->category->name }} @endif

{{ $post->title }}

@if($post->excerpt)

{{ \Illuminate\Support\Str::limit($post->excerpt, 105) }}

@endif
@endforeach
@endif @endsection