/**
  * Post the form.
  *
  * @return $this
  */
 public function post()
 {
     if (app('request')->isMethod('post')) {
         $this->dispatch(new PostForms($this));
         $this->dispatch(new HandleErrors($this));
     }
     parent::post();
     return $this;
 }