lasthourcloud/resources/views/livewire/notifications/discord-settings.blade.php

20 lines
681 B
PHP
Raw Normal View History

2023-06-01 10:15:33 +00:00
<div>
2023-05-25 16:27:52 +00:00
<form wire:submit.prevent='submit' class="flex flex-col">
2023-06-01 10:15:33 +00:00
<div class="flex items-center gap-2">
<h3>Discord</h3>
<x-forms.button class="w-16 mt-4" type="submit">
Save
</x-forms.button>
</div>
2023-05-25 16:27:52 +00:00
<div class="flex flex-col gap-2 xl:flex-row w-96">
2023-06-01 10:15:33 +00:00
<x-forms.checkbox instantSave id="model.smtp_attributes.discord_active" label="Notification Enabled" />
2023-05-25 16:27:52 +00:00
</div>
<div class="flex flex-col gap-2 xl:flex-row w-96">
2023-06-01 10:15:33 +00:00
<x-forms.input required id="model.smtp_attributes.discord_webhook" label="Webhook" />
2023-05-25 16:27:52 +00:00
</div>
<div>
2023-06-01 10:15:33 +00:00
2023-05-25 16:27:52 +00:00
</div>
</form>
</div>