<mvc:View

xmlns="sap.m"
  xmlns:t="sap.ui.table"
  xmlns:f="sap.ui.layout.form"
xmlns:mvc="sap.ui.core.mvc"
  controllerName="fivea.controller.Breeder_Create" >
<Page title="Create Breeder record"   showNavButton="false"  >

  <customHeader>
      <Bar>
      <contentLeft>
          <Button icon="sap-icon://nav-back" press="onNavBack"/>
          <Button icon="sap-icon://create" type="Accept" text="Create" press="onCreate"/>
      </contentLeft>
      </Bar>
  </customHeader>

      <ObjectHeader title="{id}"/>

      <f:SimpleForm id="breeder_create_form" editable="true">
          <Label text="First name"/>
          <Input id="first_name"   type="Text"   name="first_name" enabled="true"  />
          <Label text="Last name"/>
          <Input id="last_name"  type="Text"  name="last_name" enabled="true"  />
     </f:SimpleForm>

</Page>

</mvc:View>