Rebrand Hub+Flux
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run

This commit is contained in:
Kevin Adametz 2026-05-20 15:44:15 +02:00
parent 0a3e52d603
commit 9b47296cea
130 changed files with 9357 additions and 3345 deletions

View file

@ -45,7 +45,7 @@ new #[Layout('components.layouts.app')] class extends Component
@include('partials.settings-heading')
<x-settings.layout :heading="__('Update password')" :subheading="__('Ensure your account is using a long, random password to stay secure')">
<form wire:submit="updatePassword" class="mt-6 space-y-6">
<form wire:submit="updatePassword" class="space-y-5">
<flux:input
wire:model="current_password"
:label="__('Current password')"
@ -68,13 +68,11 @@ new #[Layout('components.layouts.app')] class extends Component
autocomplete="new-password"
/>
<div class="flex items-center gap-4">
<div class="flex items-center justify-end">
<flux:button variant="primary" type="submit" class="w-full">{{ __('Save') }}</flux:button>
</div>
<div class="flex items-center gap-4 pt-2 border-t border-[color:var(--color-bg-rule)]">
<flux:button variant="primary" type="submit">{{ __('Save') }}</flux:button>
<x-action-message class="me-3" on="password-updated">
{{ __('Saved.') }}
<x-action-message on="password-updated">
<span class="text-[12px] text-[color:var(--color-gain-deep)]">{{ __('Saved.') }}</span>
</x-action-message>
</div>
</form>