<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="csrf-token" content="<?= csrf_token() ?>">
    <link rel="shortcut icon" href="{{ asset('favicon.ico') }}">

    <!-- Bootstrap CSS-->
    {{ HTML::style('vendor/bootstrap/css/bootstrap.min.css') }}


    <!-- CSS -->
    {{ HTML::style('css/custom.css') }}
    {{ HTML::style('css/sticky-footer.css') }}

    <script src="{{ asset('vendor/modernizr-custom.min.js') }}"></script>


    <title>{{ $title }}</title>
</head>
<body class="auth-page-body">
    <main class="main">
        <div class="container">
        	<div class="row">
	            <div class="col-md-4 col-md-offset-4">
					<div class="center-block">
                        <a href="{{URL::to('/')}}"><img class="logo img-responsive" src="/images/olas-logo2.png" alt="OLAS Logo"></a>
                    </div>
	            	<h1>{{ $title }}</h1>
	            </div>
            </div>

			@yield('session-messages')

            <div class="row">
				<div class="col-md-4 col-md-offset-4">
					@yield('form')
				</div>
			</div>

        </div>
    </main>
	@include('layouts/footer')

</body>
</html>