@extends('layouts.auth') @section('title', 'Check coverage') @section('content')
N

{{ config('nowills.name') }}

{{ config('nowills.tagline') }}

Check whether we can connect your address, and we will follow up with availability and pricing.

@include('partials.flash') @if (session('coverage_result')) @php $cr = session('coverage_result'); @endphp
@if ($cr['result'] === 'covered')

Covered Good news — we can serve this address.

Matched zone {{ $cr['zone_name'] ?? '—' }} @if ($cr['zone_tech'])({{ title_case_words($cr['zone_tech']) }})@endif at {{ (int) $cr['confidence'] }}% confidence. A sales consultant will contact you on {{ $cr['phone'] }}.

@elseif ($cr['result'] === 'planned')

Coming soon This address is in a planned build area.

{{ $cr['distance_m'] !== null ? number_format((float) $cr['distance_m']).' m from ' : 'Near ' }} {{ $cr['zone_name'] ?? 'the nearest zone' }}. Register your interest and we will notify you when it goes live.

@else

Not covered yet We do not reach this address today.

@if ($cr['zone_name']) The nearest zone is {{ $cr['zone_name'] }}, {{ number_format((float) $cr['distance_m'] / 1000, 1) }} km away. @endif We have logged your enquiry in case coverage expands.

@endif @if ($cr['notes'])

{{ $cr['notes'] }}

@endif
@endif
@csrf
@error('name'){{ $message }}@enderror
@error('phone'){{ $message }}@enderror
@error('email'){{ $message }}@enderror
@error('address'){{ $message }}@enderror
@error('latitude'){{ $message }}@enderror
@error('longitude'){{ $message }}@enderror

Don't know your coordinates? Drop a pin on any map and copy the two numbers, or call {{ config('nowills.support_phone', 'our sales team') }}.

Already a customer? Sign in

@endsection