Include Search Bar in Magento 2 CMS Page

blocksmagento-2.1magento2

I want to add the search bar in my 404 cms page. So I've written in the content of it :

{{block type="Magento\Framework\View\Element\Template" template="Magento_Search::form.mini.phtml"}}

But it doesn't shows anything. I've showed the templates hints and I I know that the location of the search bar template is in this location :

vendor/magento/module-search/view/frontend/templates/form.mini.phtml

So I don't know why my solution doesn't work. Can you help me please ?

Best Answer

change type to class

{{block class="Magento\Framework\View\Element\Template" template="Magento_Search::form.mini.phtml"}}
Related Topic