mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-02-24 11:13:02 +01:00
Remove duplicate labels from form inputs
This commit is contained in:
parent
5d38a89b3a
commit
6efaee811e
@ -13,8 +13,7 @@
|
||||
@lang('settings.old_password')
|
||||
</label>
|
||||
<input type="password" name="old_password" id="old_password" required
|
||||
class="form-control{{ $errors->has('old_password') ? ' is-invalid' : '' }}"
|
||||
placeholder="@lang('settings.old_password')">
|
||||
class="form-control{{ $errors->has('old_password') ? ' is-invalid' : '' }}">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
@ -23,7 +22,6 @@
|
||||
</label>
|
||||
<input type="password" name="new_password" id="new_password" required
|
||||
class="form-control{{ $errors->has('new_password') ? ' is-invalid' : '' }}"
|
||||
placeholder="@lang('settings.new_password')">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
@ -31,8 +29,7 @@
|
||||
@lang('settings.new_password2')
|
||||
</label>
|
||||
<input type="password" name="new_password_confirmation" id="new_password_confirmation" required
|
||||
class="form-control{{ $errors->has('new_password_confirmation') ? ' is-invalid' : '' }}"
|
||||
placeholder="@lang('settings.new_password2')">
|
||||
class="form-control{{ $errors->has('new_password_confirmation') ? ' is-invalid' : '' }}">
|
||||
</div>
|
||||
|
||||
<button type="submit" class="btn btn-primary">
|
||||
|
Loading…
x
Reference in New Issue
Block a user