Magento – How to override .phtml files in Magento 2 for backend

backendmagento2overridesphtml

I want to customize image file upload tab, So it required to override some .phtml files in following locations.

So I want to know, how to override .phtml files in

/vendor/magento/module-backend/view/adminhtml/templates/media/uploader.phtml

Best Answer

1st create ur Admin Theme by using below guide

Magento 2: How to enable newly created admin theme & override module?

or

http://devdocs.magento.com/guides/v2.1/frontend-dev-guide/themes/admin_theme_create.html

Ur file will be here

magento\app\design\adminhtml\YourVendor\YourThemeName\Magento_Backend\view\adminhtml\templates\media\uploader.phtml

Related Topic