Merge pull request #1734 from rahulshukla-webkul/development

Issue #1733
This commit is contained in:
Jitendra Singh 2019-11-05 12:02:19 +05:30 committed by GitHub
commit 65a7008452
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
<div class="control-group" :class="[errors.has('email') ? 'has-error' : '']">
<label for="email">{{ __('admin::app.users.sessions.email') }}</label>
<input type="text" v-validate="'required'" class="control" id="email" name="email" data-vv-as="&quot;{{ __('admin::app.users.sessions.email') }}&quot;"/>
<input type="text" v-validate="'required|email'" class="control" id="email" name="email" data-vv-as="&quot;{{ __('admin::app.users.sessions.email') }}&quot;"/>
<span class="control-error" v-if="errors.has('email')">@{{ errors.first('email') }}</span>
</div>