I installed laravel 5.7 on XAMPP. Now, when I want to publish a post. I am getting the bellow error. Please help. Thanks in advance.
Object not found!
The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.
If you think this is a server error, please contact the webmaster.
Error 404
localhost
Apache/2.4.34 (Win32) OpenSSL/1.1.0i PHP/7.2.9
create.blade.php
<form method = "POST" action = "/posts">
{{ csrf_field()}}
<div class="form-group">
<label for="title">Title:</label>
<input type=""text" class="form-control" id="title"name = "title">
</div>
<div class="form-group">
<label for="body">Body:</label>
<textarea id = "body" name = "body" class = "form-control"></textarea>
</div>
<button type="submit" class="btn btn-primary">Publish</button>
</form>