@extends('layouts.app') @section('title', $poll->question) @php $type = $poll->allow_multiple_answers ? "checkbox" : "radio"; @endphp @section('content') @if($hasVoted)
You have already voted on this poll.
@if($poll->results_visible)
Results
@endif
@else
$poll]) }}" method="post"> @csrf @foreach ($poll->options as $option)
@endforeach
@endif @endsection