edit.blade.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <!--
  2. Copyright (C) 2022 Echedey López Romero <elr@disroot.org>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 3 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. -->
  14. @extends('layouts.app')
  15. @section('content')
  16. <div class="container">
  17. <div class="row mb-3">
  18. <h1 class="col-12 mb-0 text-center">Loan edition</h1>
  19. </div>
  20. @if ($errors->any())
  21. <div class = "row mb-3">
  22. <div class="col-xl-6 col-lg-8 col-md-10 col-12 mx-auto alert alert-danger">
  23. <div class="container">
  24. <div class="row mb-2">
  25. <span class="col-12 text-center"><strong>Whoops!</strong> There were some problems with your input.</span>
  26. </div>
  27. <div class="row">
  28. <ul class="col-12 mb-0">
  29. @foreach ($errors->all() as $error)
  30. <li>{{ $error }}</li>
  31. @endforeach
  32. </ul>
  33. </div>
  34. </div>
  35. </div>
  36. </div>
  37. @endif
  38. <div class="row">
  39. <form class="col-xl-6 col-lg-8 col-md-10 col-12 mx-auto" action="{{ route('loans.update', $loan->id) }}" method="POST">
  40. @csrf
  41. @method('PUT')
  42. <input type="hidden" name="loan_id" value="{{ Crypt::encrypt($loan->id) }}" />
  43. <div class="container">
  44. <div class="row mb-3">
  45. <div class="col-12">
  46. <label class="form-label" for="user">User</label>
  47. <select class="form-control" id="user" name="user_id" required="">
  48. <option value="">-- Choose --</option>
  49. @foreach ($users as $user)
  50. @if ($user->id . '' === (old('user_id') ? old('user_id') : $loan->user_id . ''))
  51. <option value="{{ $user->id }}" selected="">{{ $user->name }}</option>
  52. @else
  53. <option value="{{ $user->id }}">{{ $user->name }}</option>
  54. @endif
  55. @endforeach
  56. </select>
  57. </div>
  58. </div>
  59. <div class="row mb-3">
  60. <div class="col-12">
  61. <label class="form-label" for="book">Book</label>
  62. <select class="form-control" id="book" name="book_id" required="">
  63. <option value="">-- Choose --</option>
  64. @foreach ($books as $book)
  65. @if ($book->id . '' === (old('book_id') ? old('book_id') : $loan->book_id . ''))
  66. <option value="{{ $book->id }}" selected="">{{ $book->title . ' - ' . $book->authors }}</option>
  67. @else
  68. <option value="{{ $book->id }}">{{ $book->title . ' - ' . $book->authors }}</option>
  69. @endif
  70. @endforeach
  71. </select>
  72. </div>
  73. </div>
  74. <div class="row mb-3">
  75. <div class="col-12">
  76. <label class="form-label" for="start">Start</label>
  77. <input class="form-control" type="date" id="start" name="start" value="{{ old('start') ? old('start') : $loan->start }}" required=""/>
  78. </div>
  79. </div>
  80. <div class="row mb-3">
  81. <div class="col-12">
  82. <label class="form-label" for="end">End</label>
  83. <input class="form-control" type="date" id="start" name="end" value="{{ old('end') ? old('end') : $loan->end }}"/>
  84. </div>
  85. </div>
  86. <div class="row">
  87. <div class="col-lg-6 col-12 mb-lg-0 mb-2">
  88. <div class="d-grid gap-2">
  89. <button type="submit" class="btn btn-primary">Modify</button>
  90. </div>
  91. </div>
  92. <div class="col-lg-6 col-12">
  93. <div class="d-grid gap-2">
  94. <button type="reset" class="btn btn-danger">Reset</button>
  95. </div>
  96. </div>
  97. </div>
  98. </div>
  99. </form>
  100. </div>
  101. </div>
  102. @endsection