php - Laravel 7: Problems with request in registration form

one text

Solution:

You should use form attribute to fetch data from it. You can rewrite this part code as follows :

<form name="compList" class="table align-content-center" id="compList">
            <thead>
                <tr>
                    <th scope="col">Competence</th>
                    <th scope="col">Level</th>
                    <th scope="col">Remove</th>
                </tr>
            </thead>
    </form>

Source