Add SealShare file sharing application with encryption, branding, auth, Docker, and Octane support

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
surtic86
2026-02-13 11:43:20 +01:00
co-authored by Claude Opus 4.6
parent 4790be8142
commit e37b322dde
120 changed files with 6346 additions and 1459 deletions
@@ -42,37 +42,30 @@ new class extends Component {
<section class="w-full">
@include('partials.settings-heading')
<flux:heading class="sr-only">{{ __('Password Settings') }}</flux:heading>
<x-pages::settings.layout :heading="__('Update password')" :subheading="__('Ensure your account is using a long, random password to stay secure')">
<form method="POST" wire:submit="updatePassword" class="mt-6 space-y-6">
<flux:input
<x-password
wire:model="current_password"
:label="__('Current password')"
type="password"
label="{{ __('Current password') }}"
required
autocomplete="current-password"
/>
<flux:input
<x-password
wire:model="password"
:label="__('New password')"
type="password"
label="{{ __('New password') }}"
required
autocomplete="new-password"
/>
<flux:input
<x-password
wire:model="password_confirmation"
:label="__('Confirm Password')"
type="password"
label="{{ __('Confirm Password') }}"
required
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" data-test="update-password-button">
{{ __('Save') }}
</flux:button>
<x-button type="submit" label="{{ __('Save') }}" class="btn-primary" spinner="updatePassword" data-test="update-password-button" />
</div>
<x-action-message class="me-3" on="password-updated">