19 lines
700 B
PHP
19 lines
700 B
PHP
<html>
|
||
|
||
<head>
|
||
<title>Страница с ролями</title>
|
||
</head>
|
||
<body>
|
||
<form method="POST" action="{{ url('test_table') }}">
|
||
@csrf
|
||
<label for="first_name">Имя</label>
|
||
<input type="text" id="first_name" name="first_name" placeholder="Введите имя">
|
||
<label for="last_name">Фамилия</label>
|
||
<input type="text" id="last_name" name="last_name" placeholder="Введите фамилию">
|
||
<label for="department">Отдел</label>
|
||
<input type="text" id="department_name" name="department_name" placeholder="Введите отдел">
|
||
<button type="submit">Отправить</button>
|
||
</form>
|
||
</body>
|
||
</html>
|