the configuration of both PHP and nginx has been modified to allow 50m files to be uploaded
but this error is still reported
Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException
No message
Properties of the form form
<form class="form-horizontal form-material" id="login" enctype="multipart/form-data" method="post" action="{{ url("/certify") }}">
there is also a csrf on the button of the form
<div class="form-group text-center m-t-20" style="clear: both;">
<div class="col-xs-10" style="margin-top: 15px">
<button class="btn btn-info btn-lg btn-block text-uppercase waves-effect waves-light" type="submit"></button>
{{ csrf_field() }}
</div>
</div>
definition of routes
Route::post("/certify", "LoginController@loginCertify");