make('Pterodactyl\Contracts\Repository\SettingsRepositoryInterface');
$blueprint = app()->make(BlueprintExtensionLibrary::class, ['settings' => $settings]);
?>
@include('blueprint.dashboard.dashboard')
{{ config('app.name', 'Pterodactyl') }}
@yield('head')
@section('meta')
@show
@section('user-data')
@if(!is_null(Auth::user()))
@endif
@if(!empty($siteConfiguration))
@endif
@show
@yield('assets')
@include('layouts.scripts')
@section('content')
@yield('above-container')
@yield('container')
@yield('below-container')
@yield('blueprint.wrappers')
@show
@section('scripts')
{!! $asset->js('main.js') !!}
@show