diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php
index 7ef96eb534a6..a2b65f6980ff 100644
--- a/resources/lang/en/texts.php
+++ b/resources/lang/en/texts.php
@@ -2134,6 +2134,7 @@ $LANG = array(
'raw' => 'Raw',
'raw_html' => 'Raw HTML',
'update' => 'Update',
+ 'invoice_fields_help' => 'Drag and drop fields to change their order and location',
);
diff --git a/resources/views/accounts/invoice_design.blade.php b/resources/views/accounts/invoice_design.blade.php
index 0441f8e78d4d..550ef5757eab 100644
--- a/resources/views/accounts/invoice_design.blade.php
+++ b/resources/views/accounts/invoice_design.blade.php
@@ -201,7 +201,7 @@
-
+
{{ trans('texts.color_font_help') }}
@@ -239,8 +239,11 @@
@include('accounts.partials.invoice_fields_selector', ['section' => 'account_fields1', 'fields' => INVOICE_FIELDS_ACCOUNT])
@include('accounts.partials.invoice_fields_selector', ['section' => 'account_fields2', 'fields' => INVOICE_FIELDS_ACCOUNT])
-
-
+
+
+ {{ trans('texts.invoice_fields_help') }}
+
+
{!! Button::normal(trans('texts.reset'))
->withAttributes(['onclick' => 'sweetConfirm(function() {
resetFields();
diff --git a/resources/views/accounts/partials/invoice_fields.blade.php b/resources/views/accounts/partials/invoice_fields.blade.php
index cd2ebd919dd3..9a38a2105f36 100644
--- a/resources/views/accounts/partials/invoice_fields.blade.php
+++ b/resources/views/accounts/partials/invoice_fields.blade.php
@@ -161,10 +161,4 @@ function loadFields(selectedFields)
color: red;
}
-.field-list .fa-bars {
- position: absolute;
- right: 20px;
- color: #AAA;
-}
-
diff --git a/resources/views/accounts/partials/invoice_fields_selector.blade.php b/resources/views/accounts/partials/invoice_fields_selector.blade.php
index fa4462e49a02..c9295972b2af 100644
--- a/resources/views/accounts/partials/invoice_fields_selector.blade.php
+++ b/resources/views/accounts/partials/invoice_fields_selector.blade.php
@@ -8,11 +8,11 @@