19 lines
684 B
PHP
19 lines
684 B
PHP
|
|
||
|
<div class="h-full w-full grid place-items-center mt-[150px]">
|
||
|
<div>
|
||
|
<div class="mb-2">
|
||
|
<a class="text-gray-500 hover:text-gray-700 hover:underline" href="{{ url('/manage/course') }}">
|
||
|
← Вернуться назад</a>
|
||
|
</div>
|
||
|
<h1 class="text-5xl mb-8 select-none">Создать занятие</h1>
|
||
|
<form wire:submit.prevent="create" class="p-8 border rounded-lg shadow-md mb-32 max-w-4xl">
|
||
|
{{ $this->form }}
|
||
|
|
||
|
<div class="mt-8 flex flex-row-reverse">
|
||
|
<x-ui.button type="submit">Создать →</x-ui.button>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
|