@extends('layouts.admin') @section('title', __('Dashboard')) @section('mobile_title', __('Dashboard')) @section('content')

{{ __('Dashboard') }}

{{ __('Overview of your pre-registration activity.') }}

@can('create', \App\Models\PreregistrationPage::class) {{ __('New page') }} @endcan

{{ __('Total pages') }}

{{ number_format($totalPages) }}

@if (auth()->user()->isSuperadmin()) {{ __('All pre-registration pages in the system.') }} @else {{ __('Pages you own.') }} @endif

{{ __('Total subscribers') }}

{{ number_format($totalSubscribers) }}

{{ __('Across all pages in this overview.') }}

{{ __('Active pages') }}

{{ number_format($activePages) }}

{{ __('Currently within the start and end date window.') }}

@can('create', \App\Models\PreregistrationPage::class)

{{ __('Ready to launch a new campaign?') }}

{{ __('Create a pre-registration page') }} →
@endcan
@endsection