# Newsletter form in the footer, as like in shopware 5?

**URL:** https://forum.shopware.com/t/newsletter-form-in-the-footer-as-like-in-shopware-5/72466
**Category:** Themes & Design
**Tags:** customelements, widgets
**Created:** [1. Februar 2021 um 19:07 UTC](https://forum.shopware.com/t/newsletter-form-in-the-footer-as-like-in-shopware-5/72466 "2021-02-01T19:07:53Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![DionantSolutions](https://avatars.discourse-cdn.com/v4/letter/d/7feea3/32.png) [@DionantSolutions](https://forum.shopware.com/u/DionantSolutions)
#### Post date: [1. Februar 2021 um 19:07 UTC](https://forum.shopware.com/t/newsletter-form-in-the-footer-as-like-in-shopware-5/72466/1 "2021-02-01T19:07:53Z")

</div>

I want to show a simplified version of the newsletter subscription form in the footer. I am not able to do it via a simple sw\_extend nor a sw\_include, inside a custom footer.twig.html. How would i be able to?

```
     {% sw_extends '@Storefront/storefront/element/cms-element-form/form-types/newsletter-form.html.twig' %}
     {% sw_include '@Storefront/storefront/element/cms-element-form/form-types/newsletter-form.html.twig' %}

```

&nbsp;

---

<div class="post-metadata">

### Author: ![SmartStylez](https://avatars.discourse-cdn.com/v4/letter/s/a88e4f/32.png) [@SmartStylez](https://forum.shopware.com/u/SmartStylez)
#### Post date: [1. Februar 2021 um 19:31 UTC](https://forum.shopware.com/t/newsletter-form-in-the-footer-as-like-in-shopware-5/72466/2 "2021-02-01T19:31:33Z")

</div>

Try this:&nbsp;

```
                {{ sw_csrf('frontend.form.newsletter.register.handle') }}
                {% set formViolations = app.request.get('errors') %}
                
                
                
                    
                        
                            {{ "account.personalMailPlaceholder"|trans }}{{ "general.required"|trans }}
                        
                        
                    
                    
                        {{ "newsletter.formSubmit"|trans }}

```

&nbsp;
