1234567891011121314151617181920212223 |
- @extends('layouts.app')
- @section('check')
- <nav class="nav nav-masthead justify-content-center">
- <a class="nav-link active" href="/">Home</a>
- <a class="nav-link" href="/info">About</a>
- <a class="nav-link" href="/contact">Contact</a>
- </nav>
- @endsection
- @section('content')
- <script src="js/settings.js"></script>
- @if ($flash=session('message'))
- <div id="successMessage" class="my_flash alert alert-success">
- {{ $flash }}
- </div>
- @endif
- <h1 class="cover-heading">Welcome to our page!</h1>
- <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>
- <p class="lead">
- <a href="/application" class="btn btn-lg btn-secondary">Apply</a>
- </p>
- @endsection
|