@extends('layouts.app') @section('title', "Edit poll '" . $poll->question . "'") @section('content') @if ($poll->closed)
The poll is closed and can no longer be edited.
@else @if ($changed || $extraCodes != null)
@if ($changed) Your changes have been saved. @elseif ($extraCodes != null) Your extra voting URLs have been generated: @endif

@endif
@method('PATCH') @csrf
Change settings:




@if ($poll->duplicate_vote_checking == 'codes')
@method('PATCH') @csrf
Generate extra voting codes:

@endif

@method('PATCH') @csrf
@endif @endsection