Merge remote-tracking branch 'origin/next' into coolify-analytics-traefik-caddy

This commit is contained in:
Andras Bacsai
2026-09-07 21:07:07 +02:00
@@ -107,13 +107,17 @@
@endcan
@if (session()->has('token'))
<x-application.settings-section title="Copy your token"
description="This value will not be shown again after you leave this page.">
<div class="relative">
<input type="text" value="{{ session('token') }}" readonly
class="input w-full pr-12! font-mono text-[12px] text-black dark:text-fg">
<x-copy-button :value="session('token')" label="Copy token"
class="absolute top-1/2 right-2 -translate-y-1/2" />
<x-application.settings-section title="Copy your token">
<div class="flex flex-col gap-3">
<p class="text-sm text-neutral-500 dark:text-fg-dim">
This value will not be shown again after you leave this page.
</p>
<div class="relative">
<input type="text" value="{{ session('token') }}" readonly
class="input w-full pr-12! font-mono text-[12px] text-black dark:text-fg">
<x-copy-button :value="session('token')" label="Copy token"
class="absolute top-1/2 right-2 -translate-y-1/2" />
</div>
</div>
</x-application.settings-section>
@endif