Add tests and fix user edit form

This commit is contained in:
Chris Hunt
2025-07-15 17:04:47 +01:00
parent 69bc8cb34e
commit 1e6b1f6de5
6 changed files with 137 additions and 5 deletions

View File

@@ -45,13 +45,13 @@
<div style="margin-top: -40px; width: 100%; padding: 0" class="create">
<div class="input">
<label>{{ __('app.apps.password') }} *</label>
{{ html()->password('password', array('class' => 'form-control'))->attributes(null) }}
{{ html()->password('password', array('class' => 'form-control'))->attributes([]) }}
<hr />
</div>
<div class="input">
<label>{{ __('app.user.password_confirm') }} *</label>
{{ html()->password('password_confirmation', array('class' => 'form-control'))->attributes(null) }}
{{ html()->password('password_confirmation', array('class' => 'form-control'))->attributes([]) }}
</div>
</div>