I'm learning how to work with forms but I got an error on the first try when I tried simple html code.
<form class="form" method="post" action="{{url('/painel/produtos/store')}}">
With this code I got this error:
MethodNotAllowedHttpException in RouteCollection.php line 218:
So I searched around and find out that people use this code instead
{{ Form::open(array('url' => '/painel/produtos/store')) }}
And I got a new error which is Class 'Form' not found
so i searched and found that I would need Laravel Collective but when I try to install it it gives me this error:
[UnexpectedValueException]
Could not parse version constraint :5.3.0: Invalid version string ":5.3.0"
So I dont know what to do more.