File: /var/www/vhost/disk-apps/demo-telemedicina.teky.com.co/resources/views/layouts/head.blade.php
<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>{{ config("app.name", "Laravel") }}</title>
<meta
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
name="viewport"
/>
<meta name="csrf-token" content="{{ csrf_token() }}" />
@include('layouts.css') @include('layouts.scripts')
</head>
<body class="hold-transition skin-red sidebar-mini">
<div class="wrapper">
@include('layouts.header') @include('layouts.aside')
<div class="content-wrapper">
<section class="content">
@include('layouts.flash_message') @yield('content')
</section>
</div>
@include('layouts.footer')
</div>
</body>
</html>