19 lines
439 B
PHP
19 lines
439 B
PHP
@extends('layouts.nova')
|
|
|
|
@push('head')
|
|
<meta name="csrf-token" content="{{ csrf_token() }}" />
|
|
@vite(['resources/js/settings.jsx'])
|
|
<style>
|
|
body.page-settings main { padding-top: 4rem; }
|
|
</style>
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
document.body.classList.add('page-settings')
|
|
})
|
|
</script>
|
|
@endpush
|
|
|
|
@section('content')
|
|
@inertia
|
|
@endsection
|