Advertisement
paolomax

Untitled

Nov 23rd, 2021
697
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 4.79 KB | None | 0 0
  1. @extends('master')
  2.  
  3. @section('breadcrumb')
  4. {{ Breadcrumbs::render('dashboard') }}
  5. @endsection
  6.  
  7. @section('content')
  8.      @if(\Session::has('msg'))
  9.      <div class="col-12 text-center">
  10.           <h5 class="text-danger">{!! \Session::get('msg') !!}</h5>
  11.      </div>
  12.      @endif
  13.  
  14. @if(Auth::check())
  15.      @if(Auth::user()->is_admin)
  16.           <div class="col-sm text-white">
  17.                <span class="contact-us-style">Sede Legale</h2>
  18.            </div>
  19.            <div class="col-sm pb-2">
  20.                 <div class="mb-3">
  21.                      <img class="mr-2" src="{{asset('/images/address.png')}}" width="52px" height="52px">
  22.                      <span class="font-size-20px">Roma, via Emanuele Filiberto 190</span>
  23.                 </div>
  24.                 <div class="my-3">
  25.                      <img class="mr-2" src="{{asset('/images/phone.png')}}" alt="" width="52px" height="52px">
  26.                      <span class="font-size-20px">telefono: 06-703801</span>
  27.                 </div>
  28.                 <div class="my-3">
  29.                      <img class="mr-2" src="{{asset('/images/mail.png')}}" alt="" width="52px" height="52px">
  30.                      <span class="font-size-20px">mail: info@sistemafarmaciaitalia.it</span>
  31.                 </div>
  32.                 <div class="my-3">
  33.                      <img class="mr-2" src="{{asset('/images/work.png')}}" alt="" width="52px" height="52px">
  34.                      <span class="font-size-20px">P. IVA e C.F: 14853081009</span>
  35.                 </div>
  36.                 <div class="my-3">
  37.                      <img class="mr-2" src="{{asset('/images/contact_form_loghi-e1630914710759-300x115.png')}}" width="206px" height="78.9px" alt="">
  38.                      <img class="mr-2" src="{{asset('/images/ff.png')}}" width="127px" height="83.8px" alt="">
  39.                 </div>
  40.      @else
  41. <div class="scrollable__content">
  42.  <div class="container">
  43.       <div class="row mb-4">
  44.            <div class="col-sm text-white">
  45.                <span class="contact-us-style">Contattaci</span>
  46.            </div>
  47.            <div class="col-sm text-white">
  48.                <span class="contact-us-style">Sede Legale</h2>
  49.            </div>
  50.       </div>
  51.       <div class="row mb-4">
  52.            <div class="col-sm">
  53.                <form action="{{route('helpdesk.sendSupportRequest')}}" method="POST">
  54.                     @csrf
  55.                     <div class="mr-2">
  56.                          <label for="subject" class="contact-us-label my-2">Oggetto</label>
  57.                          <div>
  58.                               <input class="form-control contact-us-label contact-us-form-border border-radius-zero" type="text" id="subject" name="subject" required>
  59.                          </div>
  60.                     </div>
  61.                     <div class="mr-2">
  62.                          <label for="message" class="contact-us-label my-2">Il tuo messaggio</label>
  63.                          <textarea class="form-control contact-us-label contact-us-form-border border-radius-zero" name="message" id="message" cols="50" rows="5" required></textarea>
  64.                     </div>
  65.                     <div class="mr-2">
  66.                          <button type="submit" class="btn button w-100 my-3 contact-us-bgcolor border-radius-zero text-white">Invia</button>
  67.                     </div>
  68.                </form>
  69.            </div>
  70.            <div class="col-sm card__container pb-2">
  71.                 <div class="mb-3">
  72.                      <img class="mr-2" src="{{asset('/images/address.png')}}" width="52px" height="52px">
  73.                      <span class="font-size-20px">Roma, via Emanuele Filiberto 190</span>
  74.                 </div>
  75.                 <div class="my-3">
  76.                      <img class="mr-2" src="{{asset('/images/phone.png')}}" alt="" width="52px" height="52px">
  77.                      <span class="font-size-20px">telefono: 06-703801</span>
  78.                 </div>
  79.                 <div class="my-3">
  80.                      <img class="mr-2" src="{{asset('/images/mail.png')}}" alt="" width="52px" height="52px">
  81.                      <span class="font-size-20px">mail: info@sistemafarmaciaitalia.it</span>
  82.                 </div>
  83.                 <div class="my-3">
  84.                      <img class="mr-2" src="{{asset('/images/work.png')}}" alt="" width="52px" height="52px">
  85.                      <span class="font-size-20px">P. IVA e C.F: 14853081009</span>
  86.                 </div>
  87.                 <div class="my-3">
  88.                      <img class="mr-2" src="{{asset('/images/contact_form_loghi-e1630914710759-300x115.png')}}" width="206px" height="78.9px" alt="">
  89.                      <img class="mr-2" src="{{asset('/images/ff.png')}}" width="127px" height="83.8px" alt="">
  90.                 </div>
  91.           </div>
  92.       </div>
  93.  </div>
  94.      @endif
  95. @endif
  96.  
  97. </div>
  98. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement