/**
  * Build the form.
  *
  * @param null $entry
  * @return $this
  */
 public function build($entry = null)
 {
     $this->dispatch(new BuildForms($this));
     $this->dispatch(new MergeFields($this));
     parent::build($entry);
     return $this;
 }
 /**
  * Build the form.
  *
  * @param null $entry
  */
 public function build($entry = null)
 {
     $this->dispatch(new BuildForms($this));
     $this->dispatch(new PostForms($this));
     $this->dispatch(new MergeFields($this));
     $this->dispatch(new HandleErrors($this));
     parent::build($entry);
 }