File "minimal.blade.php"

Full Path: /home/fundopuh/trader.fxex.org/resources/views/errors/minimal.blade.php
File size: 902 bytes
MIME-type: text/html
Charset: utf-8


<!DOCTYPE html>
<html lang="en">

<head>
	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>@yield('title') - {{ $settings->site_name }}</title>

	<!-- Google font -->
	<link href="https://fonts.googleapis.com/css?family=Montserrat:700,900" rel="stylesheet">

	<!-- Font Awesome Icon -->
	<link type="text/css" rel="stylesheet" href="{{ asset('error/css/font-awesome.min.css') }}" />

	<!-- Custom stlylesheet -->
	<link type="text/css" rel="stylesheet" href="{{ asset('error/css/style.css') }}" />
</head>

<body>
	<div id="notfound">
		<div class="notfound-bg"></div>
		<div class="notfound">
			<div class="notfound-404">
				<h1> @yield('code') </h1>
			</div>
			<h2>@yield('message')</h2>
			<a href="{{ url()->previous() }}" class="home-btn">Go Back</a>
		</div>
	</div>
</body>
</html>