Skip to content

Commit b982ece

Browse files
committed
Autocomplete attributes added
1 parent 570984a commit b982ece

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

resources/views/admin/_form.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858

5959
<div class="row gx-3">
6060
<div class="col-sm-6">
61-
{!! BootForm::email(__('Email'), 'email') !!}
61+
{!! BootForm::email(__('Email'), 'email')->autocomplete('off') !!}
6262
</div>
6363
<div class="col-sm-6">
6464
{!! BootForm::text(__('Website'), 'website')->placeholder('https://') !!}
@@ -67,11 +67,11 @@
6767

6868
<div class="row gx-3">
6969
<div class="col-sm-6">
70-
{!! BootForm::text(__('Phone'), 'phone') !!}
70+
{!! BootForm::text(__('Phone'), 'phone')->autocomplete('off') !!}
7171
</div>
7272
</div>
7373

74-
{!! BootForm::textarea(__('Address'), 'address')->rows(4) !!}
74+
{!! BootForm::textarea(__('Address'), 'address')->rows(4)->autocomplete('off') !!}
7575

7676
<div class="row gx-3">
7777
<div class="col-md-5">

0 commit comments

Comments
 (0)