12345678910111213141516171819202122232425 |
- @extends('layouts.pro')
- @section('content')
- @if(Session::get('message'))
- <div class="alert-alert-info">{{Session::get('message')}}</div>
- @endif
- <h1>Pro dashboard</h1>
- <a href="{{route('pro-logout')}}">Log out</a>
- <ul>
- <li>
- <a href="{{route('pro-index')}}">Pros</a>
- </li>
- </ul>
- <div moe>
- <a start show href="">create pro</a>
- <form url="/api/dev/createSystemAdmin" style="display:none">
- <h1>Form to create pro</h1>
- <button submit>submit</button>
- <button cancel>Cancel</button>
- </form>
- </div>
- @endsection
|