@extends('layouts.app') @section('title', 'Votes') @section('content')
Cast your vote

{{ $vote->question }}

@can('vote', $vote) @if($vote->user()->where('user_id', \Auth::user()->id)->exists())

You've already voted.

@else
@method('PATCH') @csrf @foreach( $vote->option as $votefor )
@endforeach @error('vote') {{ $errors->first('vote') }} @enderror

Your vote is secret and can not be traced. The vote is final and cannot be changed.

@endif @else

{{ Gate::inspect('vote', $vote)->message() }}

@endcan
Vote summary
@if ($vote->closed)

Results

@else

Summary will be publicly available once the vote closes at {{ \Carbon\Carbon::create($vote->end_at)->toEuropeanDateTime() }}

@endif
@endsection @section('js') @vite('resources/js/chart.js') @endsection