Ошибка при переносе приложения на Bootstrap

Имеется небольшое веб приложение по манипулированию юзерами, суть задачи сделать страницы через Bootstrap, у основной страницы /admin есть вкладка по добавлению нового пользователя, попытка открыть данную вкладку просто ничего не делает

            <div class="tab-pane fade" id="new-user" role="tabpanel" aria-labelledby="new-user">
                <h5>Add new user</h5>
                <form th:method="post" th:action="@{/registration}" th:object="${user}">
                    <div class="form-group text-center">
                        <label for="firstName">Name</label>
                        <br/>
                        <input type="text" th:field="*{firstName}" id="firstName"/>
                    </div>
                    <div class="form-group text-center">
                        <label for="lastName">LastName</label>
                        <br/>
                        <input type="text" th:field="*{lastName}" id="lastName"/>
                    </div>
                    <div class="form-group text-center">
                        <label for="age">Age</label>
                        <br/>
                        <input type="text" th:field="*{age}" id="age"/>
                    </div>
                    <div class="form-group text-center">
                        <label for="username">Username</label>
                        <br/>
                        <input type="text" th:field="*{username}" id="username"/>
                    </div>
                    <div class="form-group text-center">
                        <label for="password">Password</label>
                        <br/>
                        <input type="text" th:field="*{password}" id="password"/>
                    </div>
                    <div class="form-group text-center">
                        <label for="role">Role</label>
                        <select  class="custom-select" multiple id="role" name="newRoles[]" required>
                            <option value="ROLE_ADMIN">Admin</option>
                            <option value="ROLE_USER">User</option>
                        </select>
                    </div>
                    <div class="justify-content-center d-flex">
                        <button type="submit" class="btn btn-success">Add new user</button>
                    </div>
                </form>
            </div>

2022-04-11 18:55:51.274 ERROR 1744 --- [nio-8081-exec-7] org.thymeleaf.TemplateEngine : [THYMELEAF][http-nio-8081-exec-7] Exception processing template "admin": Error during execution of processor 'org.thymeleaf.spring5.processor.SpringInputGeneralFieldTagProcessor' (template: "admin" - line 201, col 48)

org.thymeleaf.exceptions.TemplateProcessingException: Error during execution of processor 'org.thymeleaf.spring5.processor.SpringInputGeneralFieldTagProcessor' (template: "admin" - line 201, col 48)

вот такая ошибка возникает, 201 строка кода, input type="text" th:field="*{firstName}" id="firstName"


Ответы (0 шт):