|
12345678910111213141516171819202122232425 |
- @extends('master')
-
- @section('title', 'Home')
- @section('heading-style', 'info-page')
-
- @section('head-metas')
- @parent
- <link rel="stylesheet" href="/css/panel.css">
- @endsection
-
- @section('content')
- <main>
- <div class="info-heading">
- <h3>To continue, we need to make sure your email address is yours. Click the verification link we've sent to you.</h3>
- <button id="resend_verification" class="brand-button">Resend</button>
- </div>
- </main>
- @endsection
-
- @section('scripts')
- @parent
- <script src="js/app.js"></script>
- <script src="js/chunk-vendors.js"></script>
- <!-- <script src="main.js"></script> -->
- @endsection
|