Moved plugged in flash messaging

Just moved system notifications to it's proper template file and layer

TODO: make seperate notification display for errors, and neutral system
info
pull/8/head
Ro 1 year ago
parent afce441001
commit 62a11168ec
Signed by: are0h
GPG Key ID: 29B551CDBD4D3B50

@ -4,12 +4,6 @@
@section('main-content') @section('main-content')
@parent @parent
@if($errors->any())
<h4>{{$errors->first()}}</h4>
@endif
@if(session('message'))
{!! session('message') !!}
@endif
<section role="loc-index"> <section role="loc-index">
<div> <div>
<h1>Locations</h1> <h1>Locations</h1>

@ -1,41 +1,52 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head>
<meta charset="UTF-8">
<title>
@yield('title')
</title>
<link rel="stylesheet" type="text/css" href="/assets/css/front/start.css?=sdfsdf">
</head>
<body>
<header>
<nav>
<div role="nav-left">
<a href="/" title="home" role="nav-links">
<i class="ti ti-biohazard-off"></i>
</a>
<a href="/about" title="about" role="nav-links">
<i class="ti ti-info-circle"></i>
</a>
<a href="/listings/page/1" title="instance listing" role="nav-links">
<i class="ti ti-list"></i>
</a>
</div> <head>
<div role="nav-right"> <meta charset="UTF-8">
<a href="/den" title="login" role="nav-links"> <title>
<i class="ti ti-door-enter" title="login"></i> @yield('title')
</a> </title>
<link rel="stylesheet" type="text/css" href="/assets/css/front/start.css?=sdfsdf">
</head>
</nav> <body>
</header> <header>
<div role="system-notice"> <nav>
<i class="ti ti-alert-circle"></i> <div role="nav-left">
</div> <a href="/" title="home" role="nav-links">
<main> <i class="ti ti-biohazard-off"></i>
@section('main-content') </a>
@show <a href="/about" title="about" role="nav-links">
</main> <i class="ti ti-info-circle"></i>
</body> </a>
</body> <a href="/listings/page/1" title="instance listing" role="nav-links">
</html> <i class="ti ti-list"></i>
</a>
</div>
<div role="nav-right">
<a href="/den" title="login" role="nav-links">
<i class="ti ti-door-enter" title="login"></i>
</a>
</nav>
</header>
@if($errors->any())
<div role="system-notice">
<i class="ti ti-alert-circle"></i> {{$errors->first()}}
</div>
@endif
@if(session('message'))
<div role="system-notice">
<i class="ti ti-alert-circle"></i> {!! session('message') !!}
</div>
@endif
<main>
@section('main-content')
@show
</main>
</body>
</body>
</html>
Loading…
Cancel
Save