Why isn't my customer form capturing first name and city data?

Hey. I’m building a form for people to join our customer database but it’s not pulling all the data into a customer field.

First Name and City are not working.


  

    {%- for block in section.blocks -%}
      {%- case block.type -%}
        {%- when '@app' -%}
          {% render block %}
        {%- when 'heading' -%}
          ## {{ block.settings.heading | escape }}
        {%- when 'paragraph' -%}
          {{ block.settings.text }}

        {%- when 'email_form' -%}
          
            {% form 'customer', class: 'newsletter-form' %}
              
              

               
      
    
      
      
    

                
                  
                  
                 
                

               
       
            
           
          

              
            
            
          

    
 
   
    
    
  

            
  
    
               

             
                {%- if form.errors -%}
                  <small>{% render 'icon-error' %}{{ form.errors.translated_fields['email'] | capitalize }} {{ form.errors.messages['email'] }}</small>
                {%- endif -%}
             
              {%- if form.posted_successfully? -%}
                ### {% render 'icon-success' %}Thanks for joining kindred!
              {%- endif -%}
           
        
        
        

          

              {% endform %}
      {%- endcase -%}
    {%- endfor -%}
       
  

      

   
  

Hi @subjectmatter ,

I checked and you declared 2 city fields so you only need to remove one, it will work fine.

Hope it helps!

Hey!

I’ve removed that now but it still isn’t coming through.

Thanks

Hi @subjectmatter ,

Please send your site and if your site is password protected, please send me the password. I will check it.