123456789101112131415161718192021 |
- @extends("base")
- @section("content")
- <form action="/plane/create/" method="post">
- <div class="form-group">
- <label for="model">Модель</label>
- <input type="text" class="form-control" name="model" id="model" placeholder="Введите модель">
- <label for="production_date">Дата производства</label>
- <input type="date" class="form-control" name="production_date" id="production_date" placeholder="Введите модель">
- <label for="operating_date">Дата начала эксплоатации</label>
- <input type="date" class="form-control" name="operating_date" id="operating_date" placeholder="Введите модель">
- <label class="form-check-label" for="serviceability">Исправность</label>
- <input type="checkbox" class="form-check-input" name="serviceability" id="serviceability">
- </div>
- <button type="submit" class="btn btn-primary">Submit</button>
- @csrf
- </form>
- @stop
|