{{ $contentPage->title }}

@if($isHomePage) Update the hero text and buttons shown on the home page. @elseif($contentPage->key === 'waters') Update the waters landing page hero text. @elseif($contentPage->key === 'rules') Update the hero shown on the global rules page. @elseif($contentPage->key === 'pricing') Update the hero shown on the pricing page. @elseif($contentPage->key === 'site-map') Update the hero shown on the public site map page. @elseif($contentPage->key === 'blog') Update the hero shown on the news and blog page. @elseif($contentPage->key === 'matches') Update the hero shown on the matches page. @else Update the contact details, directions, opening times, and map for the contact us page. @endif

@csrf @method('PUT') @if($isHomePage)

Hero

@if(!empty($data['hero_image']))
Current Hero Image
Hero image
@endif

Button 1

Button 2

Section 1

@if(!empty($data['intro_image']))
Section 1 image
@endif

Section 2

@if(!empty($data['secondary_image']))
Section 2 image
@endif

Section 3 / CTA

@if(!empty($data['cta_image']))
CTA image
@endif
@elseif(in_array($contentPage->key, ['waters', 'rules', 'pricing', 'site-map', 'blog', 'matches'], true))

Hero

@if(!empty($data['hero_image']))
Hero image
@endif

Intro Section

@if(!empty($data['intro_image']))
Intro image
@endif

Secondary Section

@if(!empty($data['secondary_image']))
Secondary image
@endif

CTA Section

@if(!empty($data['cta_image']))
CTA image
@endif
@else

Hero

@if(!empty($data['hero_image']))
Hero image
@endif

Intro Section

@if(!empty($data['intro_image']))
Intro image
@endif

Secondary Section

@if(!empty($data['secondary_image']))
Secondary image
@endif

CTA Section

@if(!empty($data['cta_image']))
CTA image
@endif

Contact Details

Social Links

How To Find Us Section

Opening Times Section

Map

This address is used to show the map on the contact page.
@endif
Back