I have a very weird problem. When I'm submitting the form, it throws an error with server-side validation.
Here is my simple controller:
namespace App\Http\Controllers;  use Newsletter; use Illuminate\Http\Request;  class SubscriptionController extends Controller {     public function subscribe(Request $request)     {         $request->validate([             'email' => 'required|email',             ]);     } }   Submitting the form gives me:
BadMethodCallException Method validate does not exist.
it should work according to:
https://laravel.com/docs/5.4/validation
In docs said:
$this->validate($request, [     'email' => 'required|email', ]);   This string - works :)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With