17 lines
531 B
PHP
17 lines
531 B
PHP
|
|
<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="record.name">{{ __('Name') }}</x-ignite-label>
|
|
<x-ignite-input name="record.name" wire:model="record.name" />
|
|
</div>
|
|
|
|
<x-button type="info">{{ __('Save') }}</x-button>
|
|
<x-button href="{{ route('admin.raid.index') }}" type="warning">{{ __('Back') }}</x-button>
|
|
</form>
|
|
|
|
</div>
|