You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

eep-residential-form.blade.php 1.0KB

12345678910111213141516171819202122232425262728
  1. @extends('dealer.layout.master')
  2. @section('page_title', 'Dashboard')
  3. @section('subpage', 'Graph & Summary Report')
  4. @section('img_profile', asset($userDetails->user_pic))
  5. @section('login_name', $userDetails->name )
  6. @section('last_login', $user->last_login_at )
  7. @section('content')
  8. <style>
  9. .ui-tabs .ui-tabs-nav li.ui-tabs-active a { color: #EA5730 !important; }
  10. .ui-widget-content .bRed { color: #fff !important; }
  11. </style>
  12. <!-- Table dealer -->
  13. <div class="fluid">
  14. <!-- Square buttons -->
  15. <ul class="middleNavA">
  16. <li><a target="_blank" href="{{ url('/residential/100Mbps/application-form/address').'/'.$user->_id}}" title="100Mbps">
  17. <img src="{{ url('assets/img/category.png') }}" alt="" /><span>100 Mbps</span></a>
  18. </li>
  19. <li><a target="_blank" href="{{ url('/residential/1Gbps/application-form/address').'/'.$user->_id}}" title="1Gbps">
  20. <img src="{{ url('assets/img/category.png') }}" alt="" /><span>1 Gbps</span></a>
  21. </li>
  22. </ul>
  23. </div>
  24. @endsection
  25. @section('external_js')
  26. @endsection