diff --git a/packages/Webkul/Shop/src/Resources/views/customers/account/address/create.blade.php b/packages/Webkul/Shop/src/Resources/views/customers/account/address/create.blade.php
index 82a649047..19bb5b69c 100755
--- a/packages/Webkul/Shop/src/Resources/views/customers/account/address/create.blade.php
+++ b/packages/Webkul/Shop/src/Resources/views/customers/account/address/create.blade.php
@@ -32,18 +32,24 @@
@{{ errors.first('company_name') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.create_form_controls.company_name.after') !!}
+
@{{ errors.first('first_name') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.create_form_controls.first_name.after') !!}
+
@{{ errors.first('last_name') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.create_form_controls.last_name.after') !!}
+
+ {!! view_render_event('bagisto.shop.customers.account.address.create_form_controls.vat_id.after') !!}
+
@@ -67,20 +75,28 @@
@endif
+ {!! view_render_event('bagisto.shop.customers.account.address.create_form_controls.street-address.after') !!}
+
@include ('shop::customers.account.address.country-state', ['countryCode' => old('country'), 'stateCode' => old('state')])
+ {!! view_render_event('bagisto.shop.customers.account.address.create_form_controls.country-state.after') !!}
+
@{{ errors.first('city') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.create_form_controls.city.after') !!}
+
@{{ errors.first('postcode') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.create_form_controls.postcode.after') !!}
+
diff --git a/packages/Webkul/Shop/src/Resources/views/customers/account/address/edit.blade.php b/packages/Webkul/Shop/src/Resources/views/customers/account/address/edit.blade.php
index 1a42f2476..db6b41e48 100755
--- a/packages/Webkul/Shop/src/Resources/views/customers/account/address/edit.blade.php
+++ b/packages/Webkul/Shop/src/Resources/views/customers/account/address/edit.blade.php
@@ -33,18 +33,24 @@
@{{ errors.first('company_name') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.edit_form_controls.company_name.after') !!}
+
@{{ errors.first('first_name') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.edit_form_controls.first_name.after') !!}
+
@{{ errors.first('last_name') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.edit_form_controls.last_name.after') !!}
+
+ {!! view_render_event('bagisto.shop.customers.account.address.edit_form_controls.vat_id.after') !!}
+
address1); ?>
@@ -70,20 +78,28 @@
@endif
+ {!! view_render_event('bagisto.shop.customers.account.address.edit_form_controls.street-addres.after') !!}
+
@include ('shop::customers.account.address.country-state', ['countryCode' => old('country') ?? $address->country, 'stateCode' => old('state') ?? $address->state])
+ {!! view_render_event('bagisto.shop.customers.account.address.edit_form_controls.country-state.after') !!}
+
@{{ errors.first('city') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.edit_form_controls.create.after') !!}
+
@{{ errors.first('postcode') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.edit_form_controls.postcode.after') !!}
+
diff --git a/packages/Webkul/Shop/src/Resources/views/customers/account/orders/view.blade.php b/packages/Webkul/Shop/src/Resources/views/customers/account/orders/view.blade.php
index 3b52ae1a2..ca051fac3 100755
--- a/packages/Webkul/Shop/src/Resources/views/customers/account/orders/view.blade.php
+++ b/packages/Webkul/Shop/src/Resources/views/customers/account/orders/view.blade.php
@@ -463,9 +463,9 @@
-
@include ('admin::sales.address', ['address' => $order->billing_address])
+ {!! view_render_event('bagisto.shop.customers.account.orders.view.billing-address.after', ['order' => $order]) !!}
@@ -476,9 +476,9 @@
-
@include ('admin::sales.address', ['address' => $order->shipping_address])
+ {!! view_render_event('bagisto.shop.customers.account.orders.view.shipping-address.after', ['order' => $order]) !!}
@@ -488,9 +488,9 @@
-
{{ $order->shipping_title }}
+ {!! view_render_event('bagisto.shop.customers.account.orders.view.shipping-method.after', ['order' => $order]) !!}
@endif
@@ -502,6 +502,8 @@
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
+
+ {!! view_render_event('bagisto.shop.customers.account.orders.view.payment-method.after', ['order' => $order]) !!}
diff --git a/packages/Webkul/Shop/src/Resources/views/customers/account/profile/edit.blade.php b/packages/Webkul/Shop/src/Resources/views/customers/account/profile/edit.blade.php
index a824509a3..64ed2bf50 100755
--- a/packages/Webkul/Shop/src/Resources/views/customers/account/profile/edit.blade.php
+++ b/packages/Webkul/Shop/src/Resources/views/customers/account/profile/edit.blade.php
@@ -35,6 +35,8 @@
@{{ errors.first('first_name') }}
+ {!! view_render_event('bagisto.shop.customers.account.profile.edit.first_name.after') !!}
+
@@ -42,6 +44,8 @@
@{{ errors.first('last_name') }}
+ {!! view_render_event('bagisto.shop.customers.account.profile.edit.last_name.after') !!}
+
@@ -54,24 +58,32 @@
@{{ errors.first('gender') }}
+ {!! view_render_event('bagisto.shop.customers.account.profile.edit.gender.after') !!}
+
@{{ errors.first('date_of_birth') }}
+ {!! view_render_event('bagisto.shop.customers.account.profile.edit.date_of_birth.after') !!}
+
@{{ errors.first('email') }}
+ {!! view_render_event('bagisto.shop.customers.account.profile.edit.email.after') !!}
+
@{{ errors.first('oldpassword') }}
+ {!! view_render_event('bagisto.shop.customers.account.profile.edit.oldpassword.after') !!}
+
@@ -79,6 +91,8 @@
@{{ errors.first('password') }}
+ {!! view_render_event('bagisto.shop.customers.account.profile.edit.password.after') !!}
+
diff --git a/packages/Webkul/Shop/src/Resources/views/customers/account/profile/index.blade.php b/packages/Webkul/Shop/src/Resources/views/customers/account/profile/index.blade.php
index 02abd9341..8cdc148ed 100755
--- a/packages/Webkul/Shop/src/Resources/views/customers/account/profile/index.blade.php
+++ b/packages/Webkul/Shop/src/Resources/views/customers/account/profile/index.blade.php
@@ -38,21 +38,29 @@
{{ $customer->first_name }} |
+ {!! view_render_event('bagisto.shop.customers.account.profile.view.table.first_name.after') !!}
+
| {{ __('shop::app.customer.account.profile.lname') }} |
{{ $customer->last_name }} |
+ {!! view_render_event('bagisto.shop.customers.account.profile.view.table.last_name.after') !!}
+
| {{ __('shop::app.customer.account.profile.gender') }} |
{{ $customer->gender }} |
+ {!! view_render_event('bagisto.shop.customers.account.profile.view.table.gender.after') !!}
+
| {{ __('shop::app.customer.account.profile.dob') }} |
{{ $customer->date_of_birth }} |
+ {!! view_render_event('bagisto.shop.customers.account.profile.view.table.date_of_birth.after') !!}
+
| {{ __('shop::app.customer.account.profile.email') }} |
{{ $customer->email }} |
diff --git a/packages/Webkul/Shop/src/Resources/views/customers/signup/index.blade.php b/packages/Webkul/Shop/src/Resources/views/customers/signup/index.blade.php
index 60e774254..9f4fc1b53 100755
--- a/packages/Webkul/Shop/src/Resources/views/customers/signup/index.blade.php
+++ b/packages/Webkul/Shop/src/Resources/views/customers/signup/index.blade.php
@@ -27,24 +27,32 @@
@{{ errors.first('first_name') }}
+ {!! view_render_event('bagisto.shop.customers.signup_form_controls.firstname.after') !!}
+
@{{ errors.first('last_name') }}
+ {!! view_render_event('bagisto.shop.customers.signup_form_controls.lastname.after') !!}
+
@{{ errors.first('email') }}
+ {!! view_render_event('bagisto.shop.customers.signup_form_controls.email.after') !!}
+
@{{ errors.first('password') }}
+ {!! view_render_event('bagisto.shop.customers.signup_form_controls.password.after') !!}
+
diff --git a/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/address/create.blade.php b/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/address/create.blade.php
index e35d3d737..7330d22b8 100644
--- a/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/address/create.blade.php
+++ b/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/address/create.blade.php
@@ -26,18 +26,24 @@
@{{ errors.first('company_name') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.create_form_controls.company_name.after') !!}
+
@{{ errors.first('first_name') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.create_form_controls.first_name.after') !!}
+
@{{ errors.first('last_name') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.create_form_controls.last_name.after') !!}
+
+ {!! view_render_event('bagisto.shop.customers.account.address.create_form_controls.vat_id.after') !!}
+
@php
$addresses = explode(PHP_EOL, (old('address1') ?? ''));
@endphp
@@ -64,20 +72,28 @@
@endfor
@endif
+ {!! view_render_event('bagisto.shop.customers.account.address.create_form_controls.street-address.after') !!}
+
@include ('shop::customers.account.address.country-state', ['countryCode' => old('country'), 'stateCode' => old('state')])
+ {!! view_render_event('bagisto.shop.customers.account.address.create_form_controls.country-state.after') !!}
+
@{{ errors.first('city') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.create_form_controls.city.after') !!}
+
@{{ errors.first('postcode') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.create_form_controls.postcode.after') !!}
+
diff --git a/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/address/edit.blade.php b/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/address/edit.blade.php
index b82de5902..d08718025 100644
--- a/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/address/edit.blade.php
+++ b/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/address/edit.blade.php
@@ -21,7 +21,6 @@
{!! view_render_event('bagisto.shop.customers.account.address.edit_form_controls.before', ['address' => $address]) !!}
-
address1)); ?>
@@ -30,18 +29,24 @@
@{{ errors.first('company_name') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.edit_form_controls.company_name.after') !!}
+
@{{ errors.first('first_name') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.edit_form_controls.first_name.after') !!}
+
@{{ errors.first('last_name') }}
+ {!! view_render_event('bagisto.shop.customers.account.address.edit_form_controls.last_name.after') !!}
+
+ {!! view_render_event('bagisto.shop.customers.account.address.edit_form_controls.vat_id.after') !!}
+
@@ -502,9 +502,9 @@
-
@include ('admin::sales.address', ['address' => $order->shipping_address])
+ {!! view_render_event('bagisto.shop.customers.account.orders.view.shipping-address.after', ['order' => $order]) !!}
@@ -514,9 +514,9 @@
-
{{ $order->shipping_title }}
+ {!! view_render_event('bagisto.shop.customers.account.orders.view.shipping-method.after', ['order' => $order]) !!}
@endif
@@ -528,6 +528,8 @@
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
+
+ {!! view_render_event('bagisto.shop.customers.account.orders.view.payment-method.after', ['order' => $order]) !!}
diff --git a/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/profile/edit.blade.php b/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/profile/edit.blade.php
index ba66a4bec..b5f33f26d 100644
--- a/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/profile/edit.blade.php
+++ b/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/profile/edit.blade.php
@@ -15,7 +15,7 @@
- {!! view_render_event('bagisto.shop.customers.account.profile.view.before', ['customer' => $customer]) !!}
+ {!! view_render_event('bagisto.shop.customers.account.profile.edit.before', ['customer' => $customer]) !!}
+ {!! view_render_event('bagisto.shop.customers.account.profile.edit.first_name.after') !!}
+
+ {!! view_render_event('bagisto.shop.customers.account.profile.edit.last_name.after') !!}
+
+ {!! view_render_event('bagisto.shop.customers.account.profile.edit.gender.after') !!}
+
+ {!! view_render_event('bagisto.shop.customers.account.profile.edit.date_of_birth.after') !!}
+
+ {!! view_render_event('bagisto.shop.customers.account.profile.edit.email.after') !!}
+
+ {!! view_render_event('bagisto.shop.customers.account.profile.edit.oldpassword.after') !!}
+
+ {!! view_render_event('bagisto.shop.customers.account.profile.edit.password.after') !!}
+
+ {!! view_render_event('bagisto.shop.customers.account.profile.edit_form_controls.after', ['customer' => $customer]) !!}
+
+ {!! view_render_event('bagisto.shop.customers.account.profile.view.table.first_name.after') !!}
+
| {{ __('shop::app.customer.account.profile.lname') }} |
{{ $customer->last_name }} |
+ {!! view_render_event('bagisto.shop.customers.account.profile.view.table.last_name.after') !!}
+
| {{ __('shop::app.customer.account.profile.gender') }} |
{{ $customer->gender ?? '-' }} |
+ {!! view_render_event('bagisto.shop.customers.account.profile.view.table.gender.after') !!}
+
| {{ __('shop::app.customer.account.profile.dob') }} |
{{ $customer->date_of_birth ?? '-' }} |
+ {!! view_render_event('bagisto.shop.customers.account.profile.view.table.date_of_birth.after') !!}
+
| {{ __('shop::app.customer.account.profile.email') }} |
{{ $customer->email }} |
diff --git a/packages/Webkul/Velocity/src/Resources/views/shop/customers/signup/index.blade.php b/packages/Webkul/Velocity/src/Resources/views/shop/customers/signup/index.blade.php
index 5db14c627..f723eac95 100755
--- a/packages/Webkul/Velocity/src/Resources/views/shop/customers/signup/index.blade.php
+++ b/packages/Webkul/Velocity/src/Resources/views/shop/customers/signup/index.blade.php
@@ -58,6 +58,8 @@
+ {!! view_render_event('bagisto.shop.customers.signup_form_controls.firstname.after') !!}
+
+ {!! view_render_event('bagisto.shop.customers.signup_form_controls.lastname.after') !!}
+
+ {!! view_render_event('bagisto.shop.customers.signup_form_controls.email.after') !!}
+
+ {!! view_render_event('bagisto.shop.customers.signup_form_controls.password.after') !!}
+