@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 || $extra_codes != null) @php (debug($changed)) @php (debug($extra_codes))
@if ($changed) Your changes have been saved. @elseif ($extra_codes != 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
@if ($poll->hide_results_until_closed) @endif @if ($poll->admin_password != null) @endif
@endif @endsection