Merge pull request #3427 from rahulcs0082/development

issue #3426 fixed
This commit is contained in:
Jitendra Singh 2020-07-06 11:47:18 +05:30 committed by GitHub
commit 0c557203e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -87,7 +87,7 @@
<div class="control-group" :class="[errors.has('password') ? 'has-error' : '']">
<label for="password">{{ __('shop::app.customer.account.profile.password') }}</label>
<input type="password" id="password" class="control" name="password" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.password') }}&quot;" v-validate="'min:6'">
<input type="password" id="password" class="control" name="password" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.password') }}&quot;" v-validate="'min:6'" ref="password">
<span class="control-error" v-if="errors.has('password')">@{{ errors.first('password') }}</span>
</div>

View File

@ -1,3 +1,5 @@
<div class="pagination">
{{ $results->links() }}
</div>
@if (gettype($results) == 'object')
<div class="pagination">
{{ $results->links() }}
</div>
@endif