chore: merge main into next (#11613)

Co-authored-by: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com>
Co-authored-by: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com>
This commit is contained in:
Andras Bacsai
2026-09-07 21:06:47 +02:00
committed by GitHub
co-authored by peaklabs-dev
@@ -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