123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- @extends('layouts.physicians')
- @section('content')
- <div class="bg-light">
- <div class="container pt-3">
- <nav class="mb-0">
- <ol class="breadcrumb">
- <li class="breadcrumb-item"><a href="{{route('index')}}"><u>Home</u></a></li>
- <li class="breadcrumb-item"><a href="{{route('physicians.index')}}"><u>Physicians</u></a></li>
- <li class="breadcrumb-item"><a href="{{route('physicians.practice-support')}}"><u>Practice Support</u></a></li>
- <li class="breadcrumb-item active" aria-current="page">Training</li>
- </ol>
- </nav>
- </div>
- </div>
- <div class="py-5">
- <div class="container py-lg-4">
- <div class="row justify-content-center">
- <div class="col-lg-5 text-start">
- <h5 class="subtitle mb-4 text-pry">Become a trained physician</h5>
- <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>
- <p>If you are already a partner and need assistance, please contact one of the following departments:</p>
- <p class="mb-1"><b>General Information and Ligator Orders: 800.660.2153 x 1011</b></p>
- <p class="mb-1"><b>Practice Support for the CRH O’Regan System: 800.660.2153 x 0</b></p>
- <p class="mb-1"><b>Email: <a href="mailto:info@crhmedcorp.com">info@crhmedcorp.com</a> </b></p>
- </div>
- <div class="col-lg-6 offset-lg-1">
- <img src="{{asset('img/pc-top.png')}}" class="w-100" alt="">
- </div>
- </div>
- </div>
- </div>
- <div class="bg-light">
- <div class="container py-5">
- <div class="row justify-content-center">
- <div class="col-lg-8">
- <h5 class="header">Schedule a Training Session</h5>
- <form class="" action="" method="post">
- @csrf
- <label for="">Full Name <span class="text-danger">*</span> </label>
- <div class="row">
- <div class="col-lg-4 form-group mb-4">
- <select class="form-control rounded-0 py-3" required name="prefix">
- <option value="">Select Prefix</option>
- <option value="Dr.">Dr.</option>
- <option value="Mr.">Mr.</option>
- <option value="Mrs.">Mrs.</option>
- <option value="Miss">Miss</option>
- <option value="Ms.">Ms.</option>
- <option value="Prof.">Prof.</option>
- </select>
- @error('prefix')
- <small class="text-warning">{{$message}}</small>
- @enderror
- </div>
- <div class="col-lg-4 form-group mb-4">
- <input type="text" class="form-control rounded-0 py-3" required name="name_first" placeholder="First Name" value="{{ old('name_first') }}">
- @error('name_first')
- <small class="text-warning">{{$message}}</small>
- @enderror
- </div>
- <div class="col-lg-4 form-group mb-4">
- <input type="text" class="form-control rounded-0 py-3" required name="name_last" placeholder="Last Name" value="{{ old('name_last') }}">
- @error('name_last')
- <small class="text-warning">{{$message}}</small>
- @enderror
- </div>
- </div>
- <div class="form-group mb-4">
- <label>Practice Name <span>*</span> </label>
- <input type="text" class="form-control rounded-0 py-3" required name="practice_name" value="{{ old('practice_name') }}">
- </div>
- <div class="form-group mb-4">
- <label>Email <span>*</span> </label>
- <input type="email" class="form-control rounded-0 py-3" required name="email" value="{{ old('email') }}">
- </div>
- <div class="form-group mb-4">
- <label>Phone <span>*</span> </label>
- <input type="tel" class="form-control rounded-0 py-3" required phone name="phone" value="{{ old('phone') }}">
- </div>
- <div class="form-group mb-4">
- <label>Zip / Postal Code <span>*</span> </label>
- <input type="text" class="form-control rounded-0 py-3" required phone name="zip" value="{{ old('zip') }}">
- </div>
- <div class="form-group mb-4">
- <label>How did you hear about Snyder HemBand?<span>*</span> </label>
- <input type="text" class="form-control rounded-0 py-3" required phone name="outreach" value="{{ old('outreach') }}">
- </div>
- <div class="form-group mb-4">
- <label>Comment</label>
- <textarea name="message" class="form-control rounded-0" placeholder="Message" rows="6">{{ old('message') }}</textarea>
- </div>
- <button type="submit" class="btn btn-pry w-100 py-3">SUBMIT</button>
- </form>
- </div>
- </div>
- </div>
- </div>
- @endsection
|