19 lines
389 B
PHP
19 lines
389 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
@section('htmlheader')
|
|
@include('adminlte::layouts.partials.htmlheader')
|
|
|
|
<!-- iCheck -->
|
|
<link rel="stylesheet" href="{{ asset('/plugin/iCheck/square/blue.css') }}">
|
|
@show
|
|
|
|
<body class="hold-transition login-page">
|
|
<div id="app">
|
|
@yield('content')
|
|
</div>
|
|
|
|
@section('scripts')
|
|
@include('adminlte::auth.partials.scripts')
|
|
@show
|
|
</body>
|
|
</html> |