@section('site_title', formatTitle([__('Account'), config('settings.title')])) @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('dashboard'), 'title' => __('Home')], ['title' => __('Account')] ]])

{{ __('Account') }}

@php $settings[] = [ 'icon' => 'icons.account', 'title' => 'Profile', 'description' => 'Update your profile information', 'route' => 'account.profile' ]; $settings[] = [ 'icon' => 'icons.security', 'title' => 'Security', 'description' => 'Change your security information', 'route' => 'account.security' ]; if(paymentProcessors()) { $settings[] = [ 'icon' => 'icons.package', 'title' => 'Plan', 'description' => 'View your plan details', 'route' => 'account.plan' ]; $settings[] = [ 'icon' => 'icons.card', 'title' => 'Payments', 'description' => 'View your payments and invoices', 'route' => 'account.payments' ]; } $settings[] = [ 'icon' => 'icons.api', 'title' => 'API', 'description' => 'View and change your developer key', 'route' => 'account.api' ]; $settings[] = [ 'icon' => 'icons.delete', 'title' => 'Delete', 'description' => 'Delete your account and associated data', 'route' => 'account.delete' ]; @endphp
@foreach($settings as $setting)
@endforeach