@extends('layouts.public') @section('title', 'Voter Login — ' . $election->title) @section('content')

Voting Portal

{{ $election->title }}

@if($election->voting_end) Voting closes: {{ $election->voting_end->format('d M Y H:i') }} @endif

Voter Verification

Enter your Unique ID and registered telephone number to access the ballot.

@if($errors->any())
{{ $errors->first('error') ?? $errors->first() }}
@endif
@csrf
@error('unique_id')
{{ $message }}
@enderror
@error('telephone')
{{ $message }}
@enderror

Your identity is verified securely. Votes are anonymous.

Having trouble? Contact your election administrator for assistance.
@endsection