Make sure form elements are not spell checked.

This commit is contained in:
James Cole
2022-10-23 17:36:26 +02:00
parent 2f66315416
commit d4738b21ab
26 changed files with 45 additions and 41 deletions

View File

@@ -29,7 +29,7 @@
<div class="form-group">
<label for="email" class="col-sm-4 control-label">{{ trans('form.new_email_address') }}</label>
<div class="col-sm-8">
<input type="email" class="form-control" id="email" placeholder="{{ 'new_email_address'|_ }}"
<input type="email" class="form-control" id="email" placeholder="{{ 'new_email_address'|_ }}" spellcheck="false"
value="{{ old('email')|default(email) }}"
name="email">
</div>