@extends('layouts.frontend') @section('title', '| Vote') @section('content') @php $recaptchaActive = config('services.recaptcha.enabled') && config('services.recaptcha.site_key') && config('services.recaptcha.secret_key'); @endphp

Voting has ended for Season 7.
Stay tuned to meet the finalists you’ve voted back in to the finale.

Episodes

All Startups

@foreach ($candidates as $candidate)
{{$candidate->name}}
@if ($candidate->video_url) @else
{!! $candidate->video_embed ?? 'No video available' !!}
@endif

{{$candidate->description}}

VOTE
{{ number_format($candidate->legitimate_votes_count ?? 0) }} Votes
@endforeach
@endsection @section('js') @if ($recaptchaActive) @endif @endsection