This commit is contained in:
jitendra 2020-07-07 13:36:14 +05:30
parent fdb214ec22
commit 1eb2873588
2 changed files with 3 additions and 3 deletions

View File

@ -191,7 +191,7 @@ return [
'edit-profile' => [
'title' => 'Edit Profile',
'page-title' => 'Edit Profile Form'
'page-title' => 'Edit Profile'
]
],
@ -213,7 +213,7 @@ return [
],
'create' => [
'page-title' => 'Add Address Form',
'page-title' => 'Add Address',
'company_name' => 'Company name',
'first_name' => 'First name',
'last_name' => 'Last name',

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" ref="password" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.password') }}&quot;" v-validate="'min:6'">
<span class="control-error" v-if="errors.has('password')">@{{ errors.first('password') }}</span>
</div>