16 lines
271 B
PHP
16 lines
271 B
PHP
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
@section('htmlheader')
|
||
|
@include('layouts.partials.htmlheader')
|
||
|
@show
|
||
|
|
||
|
<body class="hold-transition login-page">
|
||
|
<div id="app">
|
||
|
@yield('content')
|
||
|
</div>
|
||
|
|
||
|
@section('scripts')
|
||
|
@include('auth.partials.scripts')
|
||
|
@show
|
||
|
</body>
|
||
|
</html>
|