18 lines
408 B
PHP
18 lines
408 B
PHP
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link rel="stylesheet" href="{{ asset('/assets/bootstrap.min.css') }}">
|
|
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<div class="container mt-5 p-5 text-center">
|
|
@yield('content')
|
|
</div>
|
|
</body>
|
|
</html>
|