22 lines
609 B
PHP
22 lines
609 B
PHP
@extends('layouts.nova')
|
|
|
|
@push('head')
|
|
@vite(['resources/js/profile.jsx'])
|
|
<meta name="csrf-token" content="{{ csrf_token() }}" />
|
|
{{-- OG image (not in nova base layout) --}}
|
|
@if(!empty($og_image))
|
|
<meta property="og:image" content="{{ $og_image }}">
|
|
@endif
|
|
<meta property="og:url" content="{{ $page_canonical ?? url()->current() }}">
|
|
<style>
|
|
/* Ensure profile tab bar does not hide behind the main navbar */
|
|
.profile-tabs-sticky {
|
|
top: var(--navbar-height, 4rem);
|
|
}
|
|
</style>
|
|
@endpush
|
|
|
|
@section('content')
|
|
@inertia
|
|
@endsection
|