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 been deprecated.
bindRequest()