Files
hstream/resources/views/matrix/register.blade.php
2026-02-18 12:34:10 +01:00

32 lines
1.2 KiB
PHP

<form method="POST" action="{{ route('join.matrix.create') }}">
@csrf
<div>
<x-input-label for="username" :value="__('Username')" />
<x-text-input id="username" class="block mt-1 w-full" type="text" name="username" :value="old('username')" required autofocus autocomplete="username" />
<x-input-error :messages="$errors->get('username')" class="mt-2" />
</div>
<div class="mt-4">
<x-input-label for="password" :value="__('Password')" />
<x-text-input id="password" class="block mt-1 w-full"
type="password"
name="password"
required/>
<x-input-error :messages="$errors->get('password')" class="mt-2" />
</div>
<div class="mt-4">
<x-input-label for="password_confirmation" :value="__('Confirm Password')" />
<x-text-input id="password_confirmation" class="block mt-1 w-full"
type="password"
name="password_confirmation"
required />
</div>
<div class="flex items-center justify-end mt-4">
<x-primary-button class="ms-4">
{{ __('Create Matrix User') }}
</x-primary-button>
</div>
</form>