Here I\'m trying to fill in a contact form then send it. However when I fill in the form and click on send I have this exception :
UndefinedMethodException: Atte
You should replace
$this->form->bindRequest($this->request);
With
$this->form->bind($this->request);
As bindRequest() has deprecated.
bindRequest()