<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>404 Not Found | {{ config('constants.APP_NAME') }}</title>
    <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
    <style>
        body {
            background: #f1f1f1;
        }
        .container {
            margin-top: 80px;
        }
        .main-icon {
            font-size: 120px;
        }
    </style>
</head>
<body>
    <div class="container text-center">
        <div class="row">
            <div class="col-md-12">
                <div class="main-icon text-warning"><span class="uxicon uxicon-alert"></span></div>
                <h1>404 Not Found</h1>
                <p>The resource requested could not be found on this server!</p>
            </div>
        </div>
    </div>
</body>
</html>

