add error message in confirm new password input
This commit is contained in:
parent
f8fb123df6
commit
59102e9be4
|
|
@ -183,6 +183,10 @@ class="form-control @error('password', 'updatePassword') is-invalid @enderror"
|
||||||
id="iconKonfirm"></i>
|
id="iconKonfirm"></i>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
@if ($errors->updatePassword->has('password_confirmation'))
|
||||||
|
<small
|
||||||
|
class="text-danger">{{ $errors->updatePassword->first('password_confirmation') }}</small>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue