Skip to content

Commit

Permalink
Autocomplete attributes added
Browse files Browse the repository at this point in the history
  • Loading branch information
sdebacker committed Jul 15, 2023
1 parent 570984a commit b982ece
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/views/admin/_form.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@

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

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

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

<div class="row gx-3">
<div class="col-md-5">
Expand Down

0 comments on commit b982ece

Please sign in to comment.