123456789101112131415161718 |
- @extends('layout')
- @section('title') Users @endsection
- @section('content')
- <div style="display: flex; gap: 40%; width: 100%">
- <h1 style="text-decoration: underline; width: 40%">Список Пользователей:</h1>
- <form method="get" action="/public/users/insert" style="margin-top:30px; display:flex; gap: 15px">
- <input type="text" name="name" value="">
- <button type="submit" name="button" value="new">Добавить пользователя</button>
- </form>
- </div>
- @each("users.single-user", $users, "user")
- @yield('action-button')
- @endsection
|