This repository has been archived on 2025-05-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Astral-nook/resources/themes/pterodactyl/templates/auth/core.blade.php
2018-05-26 17:20:36 -07:00

15 lines
479 B
PHP

@extends('templates/wrapper', [
'css' => ['body' => 'bg-grey-darkest']
])
@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">
</div>
<router-view></router-view>
<p class="text-center text-grey text-xs">
{!! trans('strings.copyright', ['year' => date('Y')]) !!}
</p>
</div>
@endsection