1
0
Fork 0
wow-raid-bingo/resources/views/form/account.blade.php

31 lines
1 KiB
PHP

<div class="space-y-4">
<x-header>{{ __('Edit account') }}</x-header>
<form class="space-y-4" wire:submit.prevent="submit">
<div>
<x-ignite-label for="username">{{ __('Username') }}</x-ignite-label>
<x-ignite-input name="username" value="{{ $username }}" disabled />
</div>
<div>
<x-ignite-label for="password_current">{{ __('Current Password') }}</x-ignite-label>
<x-ignite-password name="password_current" wire:model="password_current" />
</div>
<div>
<x-ignite-label for="password">{{ __('New Password') }}</x-ignite-label>
<x-ignite-password name="password" wire:model="password" />
</div>
<div>
<x-ignite-label for="password_confirmation">{{ __('Confirm Password') }}</x-ignite-label>
<x-ignite-password name="password_confirmation" wire:model="password_confirmation" />
</div>
<x-button type="info">{{ __('Save') }}</x-button>
<x-button href="{{ route('admin') }}" type="warning">{{ __('Back') }}</x-button>
</form>
</div>