15 lines
559 B
PHP
15 lines
559 B
PHP
<x-modal-body show-var="{{$currentRenameModalName}}">
|
|
<x-slot:title>
|
|
Rename Event
|
|
</x-slot:title>
|
|
<x-form.form id="update-bonus-score-form" action="{{ route('admin.events.update', $event) }}" method="PATCH">
|
|
<x-form.body-grid columns="12">
|
|
<x-form.field name="name" label_text="Name" colspan="8" value="{{ $event->name }}" />
|
|
<div class="col-start-9 col-span-4 row-start-2">
|
|
<x-form.button >Update Event</x-form.button>
|
|
</div>
|
|
|
|
</x-form.body-grid>
|
|
</x-form.form>
|
|
</x-modal-body>
|