Added autocomplete="off" attribute to input password.
This commit is contained in:
		@@ -23,8 +23,8 @@
 | 
			
		||||
                    <form method="post" action="{{ route('profile.update-password') }}">
 | 
			
		||||
                        @csrf
 | 
			
		||||
                        @method('PUT')
 | 
			
		||||
                        <x-private.forms.input :title="__('validation.attributes.password')" name="password" type="password" required />
 | 
			
		||||
                        <x-private.forms.input :title="__('validation.attributes.password_confirmation')" name="password_confirmation" type="password" required />
 | 
			
		||||
                        <x-private.forms.input :title="__('validation.attributes.password')" name="password" type="password" autocomplete="off" required />
 | 
			
		||||
                        <x-private.forms.input :title="__('validation.attributes.password_confirmation')" name="password_confirmation" autocomplete="off" type="password" required />
 | 
			
		||||
                        <button class="btn btn-primary" type="submit">{{ __('Save') }}</button>
 | 
			
		||||
                    </form>
 | 
			
		||||
                </div>
 | 
			
		||||
 
 | 
			
		||||
@@ -37,7 +37,7 @@
 | 
			
		||||
                                <span class="input-group-text" id="basic-addon2">
 | 
			
		||||
                                    <svg class="icon icon-xs text-gray-600" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M5 9V7a5 5 0 0110 0v2a2 2 0 012 2v5a2 2 0 01-2 2H5a2 2 0 01-2-2v-5a2 2 0 012-2zm8-2v2H7V7a3 3 0 016 0z" clip-rule="evenodd"></path></svg>
 | 
			
		||||
                                </span>
 | 
			
		||||
                                <input type="password" name="password" placeholder="Password" @demo value="{{ config('app.demo_password', null) }}" @endif class="form-control" id="password" required>
 | 
			
		||||
                                <input type="password" name="password" placeholder="Password" @demo value="{{ config('app.demo_password', null) }}" @endif class="form-control" id="password" autocomplete="off" required>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <!-- End of Form -->
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user