auditionadmin/resources/views/nomination_ensembles/scobda/index.blade.php

30 lines
1.8 KiB
PHP

<x-layout.app>
<x-slot:page_title>Nomination Ensembles</x-slot:page_title>
<x-layout.page-section-container>
<x-layout.page-section>
<x-slot:section_name>Add Nomination Ensemble</x-slot:section_name>
<x-form.form method="POST" action="{{ route('nomination.admin.ensemble.store') }}" class="mb-6 mt-3">
<x-form.body-grid columns="9" class="max-w-full">
<x-form.field name="ensemble_name" label_text="Ensemble Name" colspan="3" autofocus />
<x-form.field name="entry_deadline" label_text="Entry Deadline" type="date" colspan="2"/>
<x-form.field name="min_grade" label_text="Minimum Grade" type="number" colspan="2"/>
<x-form.field name="max_grade" label_text="Maximum Grade" type="number" colspan="2"/>
<x-form.field name="max_nominations" label_text="Maximum Nominations per School" type="number" colspan="3"/>
<x-form.field name="target_size" label_text="Target Ensemble Size" type="number" colspan="3"/>
<x-form.select name="rounding_direction" colspan="3">
<x-slot:label>Round</x-slot:label>
<option value="up">Up</option>
<option value="down">Down</option>
</x-form.select>
<x-form.textarea name="instrument_list" colspan="9">
<x-slot:label>Instrument List (comma separated)</x-slot:label>
</x-form.textarea>
</x-form.body-grid>
<x-form.footer submit-button-text="Create Ensemble"/>
</x-form.form>
</x-layout.page-section>
</x-layout.page-section-container>
</x-layout.app>