Archived
1
0
Fork 0

Adding RaidForm livewire component

This commit is contained in:
Henrik Hautakoski 2022-01-09 10:42:30 +01:00
parent 4a7c2dd66c
commit 1e624a2f6c
2 changed files with 95 additions and 0 deletions

View file

@ -0,0 +1,17 @@
<div class="space-y-4">
<x-header>{{ __(($this->isNew() ? 'Create' : 'Edit') . ' raid') }}</x-header>
<form class="space-y-4" wire:submit.prevent="submit">
<div>
<x-ignite-label for="raid.name">{{ __('Name') }}</x-ignite-label>
<x-ignite-input name="raid.name" wire:model="raid.name" />
</div>
<x-button type="info">{{ __('Save') }}</x-button>
<x-button href="{{ route('admin.raid.index') }}" type="warning">{{ __('Back') }}</x-button>
</form>
</div>