mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-12 22:37:28 -08:00
Set maxlength in password reset form to 250
This commit is contained in:
parent
803f5ad0ab
commit
d1a8d76d85
|
@ -35,7 +35,7 @@
|
|||
<label class="col-md-4 control-label">{{ trans('admin/users/table.email') }}</label>
|
||||
|
||||
<div class="col-md-6">
|
||||
<input type="email" class="form-control" name="email" value="{{ $email or old('email') }}">
|
||||
<input type="email" class="form-control" name="email" maxlength="250" value="{{ $email or old('email') }}">
|
||||
{!! $errors->first('email', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
||||
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue