Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

46 rindas
1.3KB

  1. @extends('layout')
  2. @includes('includes/large-feature')
  3. <div class="container mx-auto px-8 py-8 md:py-16">
  4. <h1 class="text-3xl font-bold">
  5. {{ $product->name }}
  6. </h1>
  7. <p class="text-xl my-4">
  8. {!! $product->description !!}
  9. </p>
  10. <h2 class="text-2xl font-bold">
  11. Order
  12. </h2>
  13. <form
  14. method="post"
  15. action="{{ $orderAction }}"
  16. class="flex flex-col w-full space-y-4 max-w-xl"
  17. >
  18. @if(isset($_SESSION['errors']))
  19. <ol class="list-disc text-red-500">
  20. @foreach($_SESSION['errors'] as $field => $errors)
  21. @foreach($errors as $error)
  22. <li>{{ $error }}</li>
  23. @endforeach
  24. @endforeach
  25. </ol>
  26. @endif
  27. <input type="hidden" name="csrf" value="{{ $csrf }}" />
  28. <label for="quantity" class="flex flex-col w-full">
  29. <span class="flex">Quantity:</span>
  30. <input
  31. id="quantity"
  32. name="quantity"
  33. type="number"
  34. class="bg-gray-50 rounded-lg p-2 text-gray-900"
  35. placeholder="1"
  36. />
  37. </label>
  38. <button
  39. type="submit"
  40. class="bg-indigo-500 rounded-lg p-2 text-white"
  41. >
  42. Order
  43. </button>
  44. </form>
  45. </div>

Powered by TurnKey Linux.