welcome.blade.php 852 B

1234567891011121314151617181920212223
  1. @extends('layouts.app')
  2. @section('check')
  3. <nav class="nav nav-masthead justify-content-center">
  4. <a class="nav-link active" href="/">Home</a>
  5. <a class="nav-link" href="/info">About</a>
  6. <a class="nav-link" href="/contact">Contact</a>
  7. </nav>
  8. @endsection
  9. @section('content')
  10. <script src="js/settings.js"></script>
  11. @if ($flash=session('message'))
  12. <div id="successMessage" class="my_flash alert alert-success">
  13. {{ $flash }}
  14. </div>
  15. @endif
  16. <h1 class="cover-heading">Welcome to our page!</h1>
  17. <p class="lead">Cover is a one-page template for building simple and beautiful home pages. Download, edit the text, and add your own fullscreen background photo to make it your own.</p>
  18. <p class="lead">
  19. <a href="/application" class="btn btn-lg btn-secondary">Apply</a>
  20. </p>
  21. @endsection