daily.blade.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. @extends('layout')
  2. @section('content')
  3. <style>
  4. .bd-placeholder-img {
  5. font-size: 1.125rem;
  6. text-anchor: middle;
  7. }
  8. @media (min-width: 768px) {
  9. .bd-placeholder-img-lg {
  10. font-size: 3.5rem;
  11. }
  12. }
  13. </style>
  14. <!-- Custom styles for this template -->
  15. <link href="css/form-validation.css" rel="stylesheet">
  16. </head>
  17. <body class="bg-light">
  18. <div class="container">
  19. <div class="py-5 text-center">
  20. <img class="d-block mx-auto mb-4" src="/docs/4.3.1/assets/brand/bootstrap-solid.svg" alt="" width="72" height="72" alt="bootstrap">
  21. <h1>Top up account</h1>
  22. <p class="lead">Enter your email and the amount of money you want to add</p>
  23. </div>
  24. <form method="POST" align="center" class="needs-validation" novalidate="" action="{{action('PostsController@ind')}}">
  25. {{csrf_field()}}
  26. <div class="mb-4">
  27. <label for="second_name">Фамилия</label>
  28. <input type="text" name="second_name" class="form-control" id="seсond_name">
  29. </div>
  30. <div class="mb-4">
  31. <label for="first_name">Имя</label>
  32. <input type="text" name="first_name" class="form-control" id="first_name">
  33. </div>
  34. <div class="mb-4">
  35. <label for="last_name">Отчество</label>
  36. <input type="text" name="last_name" class="form-control" id="last_name">
  37. </div>
  38. <div class="mb-4">
  39. <label for="phone">Телефон</label>
  40. <input type="text" name="phone" class="form-control" id="phone">
  41. </div>
  42. <div class="mb-4">
  43. <label for="address">Адрес</label>
  44. <input type="text" name="address" class="form-control" id="address">
  45. </div>
  46. <div class="mb-4">
  47. <label for="dbirth">Дата рождения</label>
  48. <input type="date" name="dbirth" class="form-control" id="dbirth">
  49. </div>
  50. <div class="mb-4">
  51. <label for="position">Должность</label>
  52. <input type="text" name="position" class="form-control" id="position">
  53. </div>
  54. <hr class="mb-4">
  55. <button class="btn btn-primary btn-lg btn-block" type="submit">Continue to checkout</button>
  56. </form>
  57. </body>
  58. </html>
  59. @endsection