forked from projects/thebadspace
66cf78ba75
Added the necessary template files for every page needed. Most are still empty but all are accounted for from the previous version. Also organized all routes to the dashboard, named the den for better security
31 lines
715 B
PHP
31 lines
715 B
PHP
@extends('frame')
|
|
|
|
@section('title', 'This is The Bad Space')
|
|
|
|
@section('main-content')
|
|
@parent
|
|
|
|
<section role="start">
|
|
<div role="index-wrapper">
|
|
<div role="index-search">
|
|
<form action="/search" method="post" enctype="multipart/form-data">
|
|
<input type="text" name="index_search" value="" placeholder="SEARCH ME!" />
|
|
<button>
|
|
<i class="ti ti-search"></i>
|
|
</button>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
<div role="index-results">
|
|
|
|
{{$count}}
|
|
Bad Spaces tracked. Shot by
|
|
<a href="https://unsplash.com/photos/935EcPU1pBI">Ussama Azam</a>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
</section>
|
|
@endsection |