dashboard.blade.php 558 B

12345678910111213141516171819202122232425
  1. @extends('layouts.pro')
  2. @section('content')
  3. @if(Session::get('message'))
  4. <div class="alert-alert-info">{{Session::get('message')}}</div>
  5. @endif
  6. <h1>Pro dashboard</h1>
  7. <a href="{{route('pro-logout')}}">Log out</a>
  8. <ul>
  9. <li>
  10. <a href="{{route('pro-index')}}">Pros</a>
  11. </li>
  12. </ul>
  13. <div moe>
  14. <a start show href="">create pro</a>
  15. <form url="/api/dev/createSystemAdmin" style="display:none">
  16. <h1>Form to create pro</h1>
  17. <button submit>submit</button>
  18. <button cancel>Cancel</button>
  19. </form>
  20. </div>
  21. @endsection