{"id":40653,"date":"2016-02-04T15:12:13","date_gmt":"2016-02-04T15:12:13","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=40653"},"modified":"2025-12-18T07:20:45","modified_gmt":"2025-12-18T07:20:45","slug":"tab-with-form-in-admin-customer-edit-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/","title":{"rendered":"How to create Tab with form fields in admin customer edit section Adobe Commerce (Magento 2)"},"content":{"rendered":"\n<p>Here we will learn how to add a Tab with form fields in the Admin custom edit section in Adobe Commerce (Magento 2)<\/p>\n\n\n\n<p><img decoding=\"async\" width=\"805\" height=\"416\" class=\"alignnone\" src=\"http:\/\/i.imgur.com\/nUJDwe4.png\" alt=\"Customer edit section\" loading=\"lazy\"><br><strong>1. Create a file Webkul\/CustomerEdit\/view\/adminhtml\/layout\/customer_index_edit.xml.<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n&lt;page xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; layout=&quot;admin-2columns-left&quot;\n      xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:View\/Layout\/etc\/page_configuration.xsd&quot;&gt;\n    &lt;body&gt;\n        &lt;referenceBlock name=&quot;customer_form&quot;&gt;\n             &lt;block class=&quot;Webkul\\CustomerEdit\\Block\\Adminhtml\\Customer\\Edit\\Tabs&quot; name=&quot;custom_edit_tab_view&quot; \/&gt;\n        &lt;\/referenceBlock&gt;    \n    &lt;\/body&gt;\n&lt;\/page&gt;<\/pre>\n\n\n\n<p><strong>2. Now, create the Tabs.php in Webkul\/CustomerEdit\/Block\/Adminhtml\/Customer\/Edit as we defined in the customer_index_edit.xml file<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\nnamespace Webkul\\CustomerEdit\\Block\\Adminhtml\\Customer\\Edit;\n\nuse Magento\\Customer\\Controller\\RegistryConstants;\nuse Magento\\Ui\\Component\\Layout\\Tabs\\TabInterface;\nuse Magento\\Backend\\Block\\Widget\\Form;\nuse Magento\\Backend\\Block\\Widget\\Form\\Generic;\n\n\/**\n * Customer account form block\n *\/\nclass Tabs extends Generic implements TabInterface\n{\n    \/**\n     * @var \\Magento\\Store\\Model\\System\\Store\n     *\/\n    protected $_systemStore;\n\n    \/**\n     * @var \\Magento\\Framework\\Registry\n     *\/\n    protected $_coreRegistry;\n\n    \/**\n     * @param \\Magento\\Backend\\Block\\Template\\Context $context\n     * @param \\Magento\\Framework\\Registry $registry\n     * @param \\Magento\\Framework\\Data\\FormFactory $formFactory\n     * @param \\Magento\\Store\\Model\\System\\Store $systemStore\n     * @param array $data\n     *\/\n    public function __construct(\n        \\Magento\\Backend\\Block\\Template\\Context $context,\n        \\Magento\\Framework\\Registry $registry,\n        \\Magento\\Framework\\Data\\FormFactory $formFactory,\n        \\Magento\\Store\\Model\\System\\Store $systemStore,\n        array $data = &#091;]\n    ) {\n        $this-&gt;_coreRegistry = $registry;\n        $this-&gt;_systemStore = $systemStore;\n        parent::__construct($context, $registry, $formFactory, $data);\n    }\n\n    \/**\n     * @return string|null\n     *\/\n    public function getCustomerId()\n    {\n        return $this-&gt;_coreRegistry-&gt;registry(RegistryConstants::CURRENT_CUSTOMER_ID);\n    }\n\n    \/**\n     * @return \\Magento\\Framework\\Phrase\n     *\/\n    public function getTabLabel()\n    {\n        return __(&#039;Demo Tab&#039;);\n    }\n\n    \/**\n     * @return \\Magento\\Framework\\Phrase\n     *\/\n    public function getTabTitle()\n    {\n        return __(&#039;Demo Tab&#039;);\n    }\n\n    \/**\n     * @return bool\n     *\/\n    public function canShowTab()\n    {\n        if ($this-&gt;getCustomerId()) {\n            return true;\n        }\n        return false;\n    }\n\n    \/**\n     * @return bool\n     *\/\n    public function isHidden()\n    {\n        if ($this-&gt;getCustomerId()) {\n            return false;\n        }\n        return true;\n    }\n\n    \/**\n     * Tab class getter\n     *\n     * @return string\n     *\/\n    public function getTabClass()\n    {\n        return &#039;&#039;;\n    }\n\n    \/**\n     * Return URL link to Tab content\n     *\n     * @return string\n     *\/\n    public function getTabUrl()\n    {\n        return &#039;&#039;;\n    }\n\n    \/**\n     * Tab should be loaded trough Ajax call\n     *\n     * @return bool\n     *\/\n    public function isAjaxLoaded()\n    {\n        return false;\n    }\n\n    public function initForm()\n    {\n        if (!$this-&gt;canShowTab()) {\n            return $this;\n        }\n        \/**@var \\Magento\\Framework\\Data\\Form $form *\/\n        $form = $this-&gt;_formFactory-&gt;create();\n        $form-&gt;setHtmlIdPrefix(&#039;myform_&#039;);\n        \n        $fieldset = $form-&gt;addFieldset(&#039;base_fieldset&#039;, &#091;&#039;legend&#039; =&gt; __(&#039;Fields Information&#039;)]);\n        $rowcom = &quot;test&quot;;\n        $fieldset-&gt;addField(\n            &#039;demo_field&#039;,\n            &#039;text&#039;,\n            &#091;\n                &#039;name&#039; =&gt; &#039;demo_field&#039;,\n                &#039;data-form-part&#039; =&gt; $this-&gt;getData(&#039;target_form&#039;),\n                &#039;label&#039; =&gt; __(&#039;Demo Field in Customer Section&#039;),\n                &#039;title&#039; =&gt; __(&#039;Demo Field in Customer Section&#039;),\n                &#039;value&#039; =&gt; $rowcom,\n            ]\n        );\n        $this-&gt;setForm($form);\n        return $this;\n    }\n\n    \/**\n     * @return string\n     *\/\n    protected function _toHtml()\n    {\n        if ($this-&gt;canShowTab()) {\n            $this-&gt;initForm();\n            return parent::_toHtml();\n        } else {\n            return &#039;&#039;;\n        }\n    }\n\n    \/**\n     * Prepare the layout.\n     *\n     * @return $this\n     *\/\n    public function getFormHtml()\n    {\n        $html = parent::getFormHtml();\n        \/\/ You can call other Block also by using this function if you want to add phtml file. Otherwise, you can remove it.\n        $html .= $this-&gt;getLayout()-&gt;createBlock(\n            &#039;Webkul\\CustomerEdit\\Block\\Adminhtml\\Customer\\Edit\\Tab\\AdditionalBlock&#039;\n        )-&gt;toHtml();\n        return $html;\n    }\n}<\/pre>\n\n\n\n<p>Now reload the page, and Tab will be displayed.<\/p>\n\n\n\n<p>If you need technical assistance, please reach out to us at <a href=\"mailto:support@webkul.com\">support@webkul.com<\/a>. Additionally, discover various solutions to improve your online store by visiting the <a href=\"https:\/\/store.webkul.com\/Magento-2.html\">Adobe Commerce modules<\/a> section.<\/p>\n\n\n\n<p>For professional advice or to create custom functionalities, consider hiring <a href=\"https:\/\/webkul.com\/hire-magento-developers\/\">Adobe Commerce Developers<\/a> for your project.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Here we will learn how to add a Tab with form fields in the Admin custom edit section in Adobe Commerce (Magento 2) 1. Create a file Webkul\/CustomerEdit\/view\/adminhtml\/layout\/customer_index_edit.xml. 2. Now, create the Tabs.php in Webkul\/CustomerEdit\/Block\/Adminhtml\/Customer\/Edit as we defined in the customer_index_edit.xml file Now reload the page, and Tab will be displayed. If you need technical <a href=\"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":4,"featured_media":39671,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[2669,12967,2671,2670,2460],"class_list":["post-40653","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento2","tag-admin-edit-customer","tag-adobe-commerce","tag-create-tab-with-form-magento-2-0","tag-create-tabs-in-customer-edit","tag-magento-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to create Tab with form fields in admin customer edit form.<\/title>\n<meta name=\"description\" content=\"Create Tab with form fields in admin customer edit section of Adobe Commerce (Magento 2). Will use Adobe commerce basic concepts.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to create Tab with form fields in admin customer edit form.\" \/>\n<meta property=\"og:description\" content=\"Create Tab with form fields in admin customer edit section of Adobe Commerce (Magento 2). Will use Adobe commerce basic concepts.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2016-02-04T15:12:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-18T07:20:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Abhishek Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abhishek Singh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/\"},\"author\":{\"name\":\"Abhishek Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0\"},\"headline\":\"How to create Tab with form fields in admin customer edit section Adobe Commerce (Magento 2)\",\"datePublished\":\"2016-02-04T15:12:13+00:00\",\"dateModified\":\"2025-12-18T07:20:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/\"},\"wordCount\":126,\"commentCount\":11,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png\",\"keywords\":[\"Admin Edit Customer\",\"Adobe Commerce\",\"Create Tab with Form Magento 2.0\",\"Create Tabs in Customer Edit\",\"Magento 2\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/\",\"name\":\"How to create Tab with form fields in admin customer edit form.\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png\",\"datePublished\":\"2016-02-04T15:12:13+00:00\",\"dateModified\":\"2025-12-18T07:20:45+00:00\",\"description\":\"Create Tab with form fields in admin customer edit section of Adobe Commerce (Magento 2). Will use Adobe commerce basic concepts.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create Tab with form fields in admin customer edit section Adobe Commerce (Magento 2)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0\",\"name\":\"Abhishek Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Abhishek Singh\"},\"description\":\"Adobe Commerce certified Magento developer with over 12 years of experience at Webkul. Passionate about scalable Magento 2-based webshops, AI, and multi-channel integrations, Abhishek consistently delivers innovative and efficient e-commerce solutions that propel businesses forward.\",\"sameAs\":[\"http:\/\/webkul.com\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/abhishek\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create Tab with form fields in admin customer edit form.","description":"Create Tab with form fields in admin customer edit section of Adobe Commerce (Magento 2). Will use Adobe commerce basic concepts.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"How to create Tab with form fields in admin customer edit form.","og_description":"Create Tab with form fields in admin customer edit section of Adobe Commerce (Magento 2). Will use Adobe commerce basic concepts.","og_url":"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-02-04T15:12:13+00:00","article_modified_time":"2025-12-18T07:20:45+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png","type":"image\/png"}],"author":"Abhishek Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Abhishek Singh","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/"},"author":{"name":"Abhishek Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0"},"headline":"How to create Tab with form fields in admin customer edit section Adobe Commerce (Magento 2)","datePublished":"2016-02-04T15:12:13+00:00","dateModified":"2025-12-18T07:20:45+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/"},"wordCount":126,"commentCount":11,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png","keywords":["Admin Edit Customer","Adobe Commerce","Create Tab with Form Magento 2.0","Create Tabs in Customer Edit","Magento 2"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/","url":"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/","name":"How to create Tab with form fields in admin customer edit form.","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png","datePublished":"2016-02-04T15:12:13+00:00","dateModified":"2025-12-18T07:20:45+00:00","description":"Create Tab with form fields in admin customer edit section of Adobe Commerce (Magento 2). Will use Adobe commerce basic concepts.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/Magneto-Code-Snippet-3.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/tab-with-form-in-admin-customer-edit-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to create Tab with form fields in admin customer edit section Adobe Commerce (Magento 2)"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0","name":"Abhishek Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Abhishek Singh"},"description":"Adobe Commerce certified Magento developer with over 12 years of experience at Webkul. Passionate about scalable Magento 2-based webshops, AI, and multi-channel integrations, Abhishek consistently delivers innovative and efficient e-commerce solutions that propel businesses forward.","sameAs":["http:\/\/webkul.com"],"url":"https:\/\/webkul.com\/blog\/author\/abhishek\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/40653","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=40653"}],"version-history":[{"count":11,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/40653\/revisions"}],"predecessor-version":[{"id":517944,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/40653\/revisions\/517944"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/39671"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=40653"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=40653"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=40653"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}