You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
855 B
15 lines
855 B
<x-modal id="academicprogram-form-modal" :title="$this->title" wire:submit="save" wire:loading form livewire>
|
|
|
|
<div class="d-flex flex-column gap-3">
|
|
<x-form.input name="form.name" wire:model="form.name" :label="__('domains/admission/field.academic-program.name')" />
|
|
|
|
<x-form.input name="form.code" wire:model="form.code" :label="__('domains/admission/field.academic-program.code')" />
|
|
|
|
<x-form.select name="form.status" wire:model="form.status" :label="__('domains/admission/field.academic-program.status')" :options="['active' => 'Active', 'archived' => 'Archived']" />
|
|
</div>
|
|
|
|
<x-slot:footer>
|
|
<x-button type="button" theme="secondary" :label="__('ui.button.cancel')" data-bs-dismiss="modal" />
|
|
<x-button type="submit" theme="primary" :label="__('ui.button.save')" />
|
|
</x-slot:footer>
|
|
</x-modal>
|
|
|