18 lines
926 B
PHP
18 lines
926 B
PHP
<div class="rounded-lg bg-surface p-6">
|
|
<div class="flex items-start gap-3">
|
|
<span class="grid size-10 shrink-0 place-items-center rounded-lg bg-danger-bg text-danger">
|
|
<x-ui.icon name="unlock" class="size-5" />
|
|
</span>
|
|
<div class="min-w-0">
|
|
<h3 class="text-base font-semibold text-ink">{{ __('hosts.release_reservation.title') }}</h3>
|
|
<p class="mt-1 text-sm text-muted">{{ __('hosts.release_reservation.body', ['host' => $hostName, 'customer' => $customerName]) }}</p>
|
|
</div>
|
|
</div>
|
|
<div class="mt-6 flex justify-end gap-3">
|
|
<x-ui.button variant="secondary" x-on:click="Livewire.dispatch('closeModal')">{{ __('hosts.cancel') }}</x-ui.button>
|
|
<x-ui.button variant="danger" wire:click="confirmRelease" wire:loading.attr="disabled">
|
|
{{ __('hosts.release_reservation.confirm') }}
|
|
</x-ui.button>
|
|
</div>
|
|
</div>
|