@foreach($voteOptions as $option)
@endforeach
@error('survey_option_id')
{{ $message }}
@enderror
@if(!$hasVoted && isset($survey) && $survey->isActive())
@elseif(isset($survey) && $survey->started_at && now()->lt($survey->started_at))
{{-- Voting Not Started --}}
@elseif(isset($survey) && $survey->ended_at && now()->gt($survey->ended_at))
{{-- Voting Ended --}}
@elseif($hasVoted)
@endif