Features: - Implement two fee types: entrance fee and annual fee (both NT$1,000) - Add 50% discount for disability certificate holders - Add disability certificate upload in member profile - Integrate disability verification into cashier approval workflow - Add membership fee settings in system admin Document permissions: - Fix hard-coded role logic in Document model - Use permission-based authorization instead of role checks Additional features: - Add announcements, general ledger, and trial balance modules - Add income management and accounting entries - Add comprehensive test suite with factories - Update UI translations to Traditional Chinese 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
905 B
PHP
28 lines
905 B
PHP
<x-guest-layout>
|
|
<div class="mb-4 text-sm text-gray-600 dark:text-gray-400">
|
|
{{ __('This is a secure area of the application. Please confirm your password before continuing.') }}
|
|
</div>
|
|
|
|
<form method="POST" action="{{ route('password.confirm') }}">
|
|
@csrf
|
|
|
|
<!-- Password -->
|
|
<div>
|
|
<x-input-label for="password" :value="__('Password')" />
|
|
|
|
<x-text-input id="password" class="block mt-1 w-full"
|
|
type="password"
|
|
name="password"
|
|
required autocomplete="current-password" />
|
|
|
|
<x-input-error :messages="$errors->get('password')" class="mt-2" />
|
|
</div>
|
|
|
|
<div class="flex justify-end mt-4">
|
|
<x-primary-button>
|
|
{{ __('Confirm') }}
|
|
</x-primary-button>
|
|
</div>
|
|
</form>
|
|
</x-guest-layout>
|