I want to enter in the fields the new variables of the class "NewAddrees" extension I know my syntax is wrong but I do not know how to solve it
<apex:page standardController="Account" extensions="NewAddress">
<apex:form >
<apex:pageBlock title="Nombre de la cuenta: {!Account.Name}">
<apex:pageBlockSection title="Direccion de Facturacion" columns="1">
<apex:inputField value="{!Account.BillingStreet}" tabOrderHint="1"/>
<apex:inputField value="{!Account.BillingCity}" tabOrderHint="2"/>
<apex:inputField value="{!Account.BillingState}" tabOrderHint="3"/>
<apex:inputField value="{!Account.BillingPostalCode}" tabOrderHint="4"/>
</apex:pageBlockSection>
<apex:pageBlockSection title="Direccion de Envio" columns="1">
<apex:inputField value="{!Account.ShippingStreet}" tabOrderHint="1"/>
<apex:inputField value="{!Account.ShippingCity}" tabOrderHint="2"/>
<apex:inputField value="{!Account.ShippingState}" tabOrderHint="3"/>
<apex:inputField value="{!Account.ShippingPostalCode}" tabOrderHint="4"/>
</apex:pageBlockSection>
<apex:pageBlockSection title="new Address" columns="1">
<apex:inputField value="{!Account.FiscalStreet}" tabOrderHint="1"/>
<apex:inputField value="{!Account.FiscalCity}" tabOrderHint="2"/>
<apex:inputField value="{!Account.FiscalState}" tabOrderHint="3"/>
<apex:inputField value="{!Account.FiscalPostalCode}" tabOrderHint="4"/>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
public class NewAddress {
private final Account account;
public NewAddress(ApexPages.StandardController controller) {
account = (account)controller.getRecord();
}
public String FiscalStreet { get; set; }
public String FiscalCity { get; set; }
public String FiscalState{ get; set; }
public String FiscalPostalCode { get; set; }
}