Removed unused properties on login

This may be dumb anyway - we probably don’t need to make so many round trips to the server just to see if things are required or not… But I’d really like to standardize the validation across the system

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2021-06-29 10:27:44 -07:00
parent c517ec849d
commit 3332bbe072

View file

@ -41,7 +41,7 @@
<i class="fa fa-user" aria-hidden="true"></i>
{{ trans('admin/users/table.username') }}
</label>
<input class="form-control" placeholder="{{ trans('admin/users/table.username') }}" name="username" type="text" id="username" autocomplete="off" wire:model="username" wire:model.lazy="username" autofocus>
<input class="form-control" placeholder="{{ trans('admin/users/table.username') }}" name="username" type="text" autocomplete="off" wire:model="username" wire:model.lazy="username">
@error('username')
<span class="alert-msg">
{{ $message }}
@ -53,7 +53,7 @@
<i class="fa fa-key" aria-hidden="true"></i>
{{ trans('admin/users/table.password') }}
</label>
<input class="form-control" placeholder="{{ trans('admin/users/table.password') }}" name="password" type="password" id="password" wire:model="password" wire:model.lazy="password" autocomplete="off">
<input class="form-control" placeholder="{{ trans('admin/users/table.password') }}" name="password" type="password" wire:model="password" wire:model.lazy="password" autocomplete="off">
@error('password')
<span class="alert-msg">
{{ $message }}