Merge pull request #6414 from devansh-webkul/calender-issue-on-customer-account
Calender Icon On Customer Account Fixed #6332
This commit is contained in:
commit
41e5842612
File diff suppressed because one or more lines are too long
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"/js/shop.js": "/js/shop.js?id=34684ef2b5b3c24817b4",
|
||||
"/css/shop.css": "/css/shop.css?id=018e0f910649f28ef1f0"
|
||||
"/css/shop.css": "/css/shop.css?id=a7c7bfc61859923d2d79"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4133,6 +4133,20 @@ ol.breadcrumb {
|
|||
}
|
||||
}
|
||||
|
||||
.account-content {
|
||||
.account-layout {
|
||||
.control-group {
|
||||
&.date,
|
||||
&.datetime {
|
||||
&::after {
|
||||
position: relative;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Header css start here.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -57,10 +57,12 @@
|
|||
|
||||
{!! view_render_event('bagisto.shop.customers.account.profile.edit.gender.after') !!}
|
||||
|
||||
<div class="control-group" :class="[errors.has('date_of_birth') ? 'has-error' : '']">
|
||||
<div class="control-group date" :class="[errors.has('date_of_birth') ? 'has-error' : '']">
|
||||
<label for="date_of_birth">{{ __('shop::app.customer.account.profile.dob') }}</label>
|
||||
|
||||
<input type="date" class="control" name="date_of_birth" value="{{ old('date_of_birth') ?? $customer->date_of_birth }}" v-validate="" data-vv-as=""{{ __('shop::app.customer.account.profile.dob') }}"">
|
||||
<date>
|
||||
<input type="date" class="control" name="date_of_birth" value="{{ old('date_of_birth') ?? $customer->date_of_birth }}" v-validate="" data-vv-as=""{{ __('shop::app.customer.account.profile.dob') }}"">
|
||||
</date>
|
||||
|
||||
<span class="control-error" v-if="errors.has('date_of_birth')">@{{ errors.first('date_of_birth') }}</span>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue