2018-05-27 01:20:36 +01:00
|
|
|
@extends('templates/wrapper', [
|
|
|
|
'css' => ['body' => 'bg-grey-darkest']
|
|
|
|
])
|
2018-03-31 21:52:11 +01:00
|
|
|
|
2018-05-27 01:20:36 +01:00
|
|
|
@section('container')
|
|
|
|
<div class="w-full max-w-xs sm:max-w-sm m-auto mt-8">
|
|
|
|
<div class="text-center">
|
|
|
|
<img src="/favicons/android-chrome-512x512.png" class="max-w-xxs">
|
2018-03-31 21:52:11 +01:00
|
|
|
</div>
|
2018-05-27 01:20:36 +01:00
|
|
|
<router-view></router-view>
|
|
|
|
<p class="text-center text-grey text-xs">
|
|
|
|
{!! trans('strings.copyright', ['year' => date('Y')]) !!}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
@endsection
|