'Sent post request but got get response in Laravel

This is blade template:

<form action="/fileupload" action="post" enctype="multipart/form-data">
    @csrf
    <input type="file" name="file"><br>
    <button type="submit">submit</button>
</form>

This is the route:

Route::get('/fileupload', [FileUpload::class,"upload"]);


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source