{{ $poll->question }}
@if(!$userResponse)
@csrf
@foreach($poll->options as $index => $option)
@if($poll->poll_type === 'multiple_choice')
@else
@endif
@if($poll->poll_type === 'multiple_choice')
@else
@endif
{{ $option }}
@endforeach
Your name (optional)
Your email (optional)
Submit Vote
@else
Thank you for voting!
Your response has been recorded.
@if($poll->feedback_text)
{{ $poll->feedback_text }}
@endif
@endif
@if($poll->show_results || $userResponse)
Poll Results
@if($results['total_responses'] > 0)
@foreach($poll->options as $index => $option) @php $count = $results['option_counts'][$index] ?? 0; $percentage = $results['option_percentages'][$index] ?? 0; @endphp
{{ $option }}
{{ $count }} ({{ $percentage }}%)
@endforeach
@else
No responses yet. Be the first to vote!
@endif
@endif