12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- @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 active" aria-current="page">Order Products</li>
- </ol>
- </nav>
- </div>
- </div>
- <div class="bg-grey py-5">
- <div class="container">
- <div class="row justify-content-center">
- <div class="col-lg-7 text-center">
- <h5 class="title m-0">Order Products</h5>
- </div>
- </div>
- </div>
- </div>
- <div class="container py-5">
- <div class="row">
- <div class="col-lg-3">
- @include('app.physicians.order-products.sidenav')
- </div>
- <div class="col-lg-8">
- <h4 class="header">Convenient, Fast Supplies for Your Practice</h4>
- <em>Get all your CRH O’Regan System materials here</em>
- <p class="mt-4">Stock up on your practice’s supplies right here. You can order online, or via fax/email.</p>
- <ul>
- <li><a href="#">Order ligators</a> for use in performing the CRH O’Regan banding procedure</li>
- <li><a href="#">Order marketing materials</a> – including brochures, table tents, post-colonoscopy tear-off pads, wall charts and more.</li>
- <li><a href="#">Order OBP ANOSPEC anocopes</a> for diagnostics</li>
- </ul>
- <p>Have questions about our materials or need help ordering? Call 800.660.2153 ext. 1011 for assistance.</p>
- <p>Not yet trained in the CRH O’Regan System? Get trained now</p>
- <h5>Fax or Email for Ligator Orders Only</h5>
- <p>To submit your order offline, please print and complete the form below.</p>
- <a href="#"><img src="{{asset('img/ligators.jpeg')}}" class="w-25 border border-dark" alt=""> </a>
- <h5 class="mt-lg-5 mt-4">Fax or Email for OBP ANOSPEC Anoscopes Only</h5>
- <p>To submit your order offline, please print and complete the form below.</p>
- <a href="#"><img src="{{asset('img/obp.jpeg')}}" class="w-25 border border-dark" alt=""> </a>
- <h5 class="mt-lg-5 mt-4">Fax or Email for Fax or Email for OBP ANOSPEC Anoscopes Only Only</h5>
- <p>To submit your order offline, please print and complete the form below.</p>
- <a href="#"><img src="{{asset('img/marketing.jpeg')}}" class="w-25 border border-dark" alt=""> </a>
- </div>
- </div>
- </div>
- @endsection
|