auditionadmin/resources/views/tabulation/choose_entry.blade.php

27 lines
810 B
PHP

@php
/**
* @var string $method Method for the select form
* @var string $formRoute Route for the form action. Should be a route name
* @var string $title Title of the page
*/
@endphp
<x-layout.app>
<x-slot:page_title>{{ $title }}</x-slot:page_title>
<x-card.card class="mx-auto max-w-sm">
<x-card.heading>{{ $title }} - Choose Entry</x-card.heading>
<div class="">
<x-form.form method="{{ $method }}" action="{{ route($formRoute) }}" class="mb-4 mt-3" id="entry-select-form">
<x-form.field name="entry_id" label_text="Entry ID"></x-form.field>
<x-form.footer >
<x-form.button>Select</x-form.button>
</x-form.footer>
</x-form.form>
</div>
</x-card.card>
</x-layout.app>
d