auditionadmin/resources/views/tabulation/seating-page/right-column/not-ready-to-seat.blade.php

21 lines
802 B
PHP

<div class="ml-4">
@if($unscored_entries->count() > 0)
<x-card.card class="p-3 text-red-500 mb-3">
Cannot seat the audition while entries are unscored.
</x-card.card>
@endif
@if($auditionHasUnresolvedDoublers)
<x-card.card class="p-3">
<p class="text-red-500">Cannot seat the audition while there are unresolved
doublers.</p>
<x-form.form method="POST"
action="{{ route('seating.audition.mass_decline',[$audition]) }}">
<x-form.field type="number" name="decline-below"
label_text="Decline doubler ranked lower than:"/>
<x-form.button>Decline</x-form.button>
</x-form.form>
</x-card.card>
@endif
</div>