mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
11 lines
481 B
PHP
11 lines
481 B
PHP
<x-card>
|
|
<x-slot name="title">
|
|
<span class="text-red-600">{{ __("Installation Failed!") }}</span>
|
|
</x-slot>
|
|
<x-slot name="description">{{ __("Your site's installation failed") }}</x-slot>
|
|
<div class="mt-5 flex items-center justify-center">
|
|
<x-secondary-button :href="route('servers.logs', ['server' => $site->server])" class="mr-2">{{ __("View Logs") }}</x-secondary-button>
|
|
<livewire:sites.delete-site :site="$site" />
|
|
</div>
|
|
</x-card>
|