@props([
'title',
'subtitle' => null,
'backRoute' => null,
'backLabel' => 'Back',
])
{{-- Back Button --}}
@if($backRoute)
{{ $backLabel }}
@endif
{{-- Header Row --}}
{{ $title }}
@if($subtitle)
{{ $subtitle }}
@endif
{{-- Actions Slot --}}
@if($slot->isNotEmpty())
{{ $slot }}
@endif