@extends('layouts.app') @section('content') @include('includes.header') @include('includes.inner_page_title', ['page_title' => __('My Package')])
@include('includes.user_dashboard_menu')
{{-- Always show current package if user has one (already purchased) --}} @if(null !== $package) @include('includes.user_package_msg') @endif {{-- Only show purchase/upgrade options if packages are active --}} @if((bool)config('jobseeker.is_jobseeker_package_active')) @if(null !== $package) {{-- Show Upgrade Packages if available --}} @if($packages->count() > 0) @include('includes.user_packages_upgrade') @endif @else {{-- Show Available Packages for first-time purchase --}} @if($packages->count() > 0) @include('includes.user_packages_new') @endif @endif @else {{-- Package system is disabled - only show message if user doesn't have package --}} @if(null === $package)

{{__('Packages Not Available')}}

{{__('The package system is currently disabled. Please contact the administrator for more information.')}}

@endif {{-- If user has package, just show the package summary above, no additional message needed --}} @endif
@include('includes.footer') @endsection