28 lines
686 B
PHP
28 lines
686 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>@yield('title') - {{ option('site_name') }}</title>
|
|
{!! bs_favicon() !!}
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
|
<!-- App Styles -->
|
|
{!! bs_header('auth') !!}
|
|
</head>
|
|
|
|
<body class="hold-transition login-page">
|
|
|
|
@yield('content')
|
|
|
|
<!-- YOU CAN NOT MODIFIY THE COPYRIGHT TEXT W/O PERMISSION -->
|
|
<div id="copyright-text" class="hide">
|
|
{!! bs_copyright() !!}
|
|
</div>
|
|
|
|
<!-- App Scripts -->
|
|
{!! bs_footer('auth') !!}
|
|
|
|
@yield('script')
|
|
</body>
|
|
</html>
|