error('Your error message.'); return $this->success('Processed successfully.', '/'); } /** * Build a form here. */ public function form() { $this->text('name')->required(); $this->email('email')->rules('email'); } /** * The data of the form. * * @return array */ public function default() { return [ 'name' => 'John Doe', 'email' => 'John.Doe@gmail.com', ]; } }