26 lines
732 B
PHP
26 lines
732 B
PHP
@php
|
|
/**
|
|
* @var string $method Method for the select form
|
|
* @var string $formRoute Route for the form action. Should be a route name
|
|
*/
|
|
@endphp
|
|
|
|
<x-layout.app>
|
|
<x-slot:page_title>Choose Entry</x-slot:page_title>
|
|
<x-card.card class="mx-auto max-w-sm">
|
|
<x-card.heading>Choose Entry</x-card.heading>
|
|
<div class="">
|
|
<x-form.form method="{{ $method }}" action="{{ route($formRoute) }}" class="mb-4 mt-3">
|
|
<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
|