I have this code right here for my password input:
<div class="row mb-3">
<div class="col-md-13">
<input id="password" type="password" class="form-control @error('password') is-invalid @enderror"
name="password" required autocomplete="current-password" placeholder="Password">
<i class="bi bi-eye-slash" id="togglePassword"></i>
@error('password')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>
How do I insert the icon to the rightmost part of the input form? This is my current situation:
