training.blade.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. @extends('layouts.physicians')
  2. @section('content')
  3. <div class="bg-light">
  4. <div class="container pt-3">
  5. <nav class="mb-0">
  6. <ol class="breadcrumb">
  7. <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
  8. <li class="breadcrumb-item"><a href="{{route('physicians.index')}}"><u>Physicians</u></a></li>
  9. <li class="breadcrumb-item"><a href="{{route('physicians.practice-support')}}"><u>Practice Support</u></a></li>
  10. <li class="breadcrumb-item active" aria-current="page">Training</li>
  11. </ol>
  12. </nav>
  13. </div>
  14. </div>
  15. <div class="py-5">
  16. <div class="container py-lg-4">
  17. <div class="row justify-content-center">
  18. <div class="col-lg-5 text-start">
  19. <h5 class="subtitle mb-4 text-pry">Become a trained physician</h5>
  20. <p>Ready to get trained and begin offering the CRH O’Regan System to your patients? Fill out the form below and we’ll get in touch right away with more information and a customized presentation for your area. Required fields marked *.</p>
  21. <p>If you are already a partner and need assistance, please contact one of the following departments:</p>
  22. <p class="mb-1"><b>General Information and Ligator Orders: 800.660.2153 x 1011</b></p>
  23. <p class="mb-1"><b>Practice Support for the CRH O’Regan System: 800.660.2153 x 0</b></p>
  24. <p class="mb-1"><b>Email: <a href="mailto:info@crhmedcorp.com">info@crhmedcorp.com</a> </b></p>
  25. </div>
  26. <div class="col-lg-6 offset-lg-1">
  27. <img src="{{asset('img/pc-top.png')}}" class="w-100" alt="">
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. <div class="bg-light">
  33. <div class="container py-5">
  34. <div class="row justify-content-center">
  35. <div class="col-lg-8">
  36. <h5 class="header">Schedule a Training Session</h5>
  37. <form class="" action="" method="post">
  38. @csrf
  39. <label for="">Full Name <span class="text-danger">*</span> </label>
  40. <div class="row">
  41. <div class="col-lg-4 form-group mb-4">
  42. <select class="form-control rounded-0 py-3" required name="prefix">
  43. <option value="">Select Prefix</option>
  44. <option value="Dr.">Dr.</option>
  45. <option value="Mr.">Mr.</option>
  46. <option value="Mrs.">Mrs.</option>
  47. <option value="Miss">Miss</option>
  48. <option value="Ms.">Ms.</option>
  49. <option value="Prof.">Prof.</option>
  50. </select>
  51. @error('prefix')
  52. <small class="text-warning">{{$message}}</small>
  53. @enderror
  54. </div>
  55. <div class="col-lg-4 form-group mb-4">
  56. <input type="text" class="form-control rounded-0 py-3" required name="name_first" placeholder="First Name" value="{{ old('name_first') }}">
  57. @error('name_first')
  58. <small class="text-warning">{{$message}}</small>
  59. @enderror
  60. </div>
  61. <div class="col-lg-4 form-group mb-4">
  62. <input type="text" class="form-control rounded-0 py-3" required name="name_last" placeholder="Last Name" value="{{ old('name_last') }}">
  63. @error('name_last')
  64. <small class="text-warning">{{$message}}</small>
  65. @enderror
  66. </div>
  67. </div>
  68. <div class="form-group mb-4">
  69. <label>Practice Name <span>*</span> </label>
  70. <input type="text" class="form-control rounded-0 py-3" required name="practice_name" value="{{ old('practice_name') }}">
  71. </div>
  72. <div class="form-group mb-4">
  73. <label>Email <span>*</span> </label>
  74. <input type="email" class="form-control rounded-0 py-3" required name="email" value="{{ old('email') }}">
  75. </div>
  76. <div class="form-group mb-4">
  77. <label>Phone <span>*</span> </label>
  78. <input type="tel" class="form-control rounded-0 py-3" required phone name="phone" value="{{ old('phone') }}">
  79. </div>
  80. <div class="form-group mb-4">
  81. <label>Zip / Postal Code <span>*</span> </label>
  82. <input type="text" class="form-control rounded-0 py-3" required phone name="zip" value="{{ old('zip') }}">
  83. </div>
  84. <div class="form-group mb-4">
  85. <label>How did you hear about Snyder HemBand?<span>*</span> </label>
  86. <input type="text" class="form-control rounded-0 py-3" required phone name="outreach" value="{{ old('outreach') }}">
  87. </div>
  88. <div class="form-group mb-4">
  89. <label>Comment</label>
  90. <textarea name="message" class="form-control rounded-0" placeholder="Message" rows="6">{{ old('message') }}</textarea>
  91. </div>
  92. <button type="submit" class="btn btn-pry w-100 py-3">SUBMIT</button>
  93. </form>
  94. </div>
  95. </div>
  96. </div>
  97. </div>
  98. @endsection