{{-- Flash Messages --}} @if (session()->has('success')) @endif @if (session()->has('error')) @endif {{-- List View --}} @if (!$formMode && !$viewMode)

Crypto Markets Management

{{-- Filters --}}
{{-- Table --}}
@forelse ($cryptosIcos as $index => $crypto) @empty @endforelse
# Image Name Symbol Slug Price (USD) Rank Status Actions
{{ $cryptosIcos->firstItem() + $index }} @if ($crypto->logo) {{ $crypto->name }} @else
@endif
{{ $crypto->name }} {{ $crypto->symbol ?? 'N/A' }} {{ $crypto->slug }} {{ $crypto->price_usd ? '$' . number_format($crypto->price_usd, 2) : 'N/A' }} {{ $crypto->rank ?? 'N/A' }} @if ($crypto->is_active) Active @else Inactive @endif

No crypto markets found.

{{-- Pagination --}}
{{ $cryptosIcos->links() }}
@endif {{-- Form View (Create/Edit) --}} @if ($formMode)

{{ $updateMode ? 'Edit' : 'Create' }} Crypto Market

{{-- Basic Information --}}
Basic Information
@error('name')
{{ $message }}
@enderror
@error('alias')
{{ $message }}
@enderror
@error('symbol')
{{ $message }}
@enderror
@error('slug')
{{ $message }}
@enderror Only letters, numbers, hyphens and underscores allowed
{{-- Image Upload --}}
Images & Media
@error('logo')
{{ $message }}
@enderror @if ($logo && is_object($logo))
@elseif ($logo && is_string($logo))
@endif
Uploading...
{{-- Price & Market Data --}}
Price & Market Data
{{-- Percentage Changes --}}
Percentage Changes
{{-- Supply Data --}}
Supply Information
{{-- All Time High (ATH) --}}
All Time High (ATH)
{{-- All Time Low (ATL) --}}
All Time Low (ATL)
{{-- Weekly High/Low --}}
Weekly High/Low
{{-- Monthly High/Low --}}
Monthly High/Low
{{-- Yearly High/Low --}}
Yearly High/Low
{{-- Historical & Chart Data --}}
Historical & Chart Data
Enter JSON data for 7-day graph
Enter JSON data for sparkline chart
{{-- Platform Information --}}
Platform Information
Enter JSON data for multiple platforms
{{-- Social Links --}}
Social Links
{{-- SEO Section --}}
SEO Information
@error('seo_title')
{{ $message }}
@enderror
@error('meta_keywords')
{{ $message }}
@enderror
@error('meta_description')
{{ $message }}
@enderror
{{-- Description --}}
Description
@error('description')
{{ $message }}
@enderror
{{-- Faqs --}}
FAQS
@error('crypto_market_faq')
{{ $message }}
@enderror
{{-- Status --}}
Status
{{-- Submit Buttons --}}
@endif {{-- View Mode --}} @if ($viewMode && $cryptoToView)

View Crypto Market: {{ $cryptoToView->name }}

{{-- Image --}} @if ($cryptoToView->image)
{{ $cryptoToView->name }}
@endif
{{-- Basic Info --}}
Name {{ $cryptoToView->name }}
Symbol {{ $cryptoToView->symbol }}
Slug {{ $cryptoToView->slug }}
Rank {{ $cryptoToView->rank ?? 'N/A' }}
Price (USD) {{ $cryptoToView->price_usd ? '$' . number_format($cryptoToView->price_usd, 8) : 'N/A' }}
Market Cap {{ $cryptoToView->market_cap_usd ? '$' . number_format($cryptoToView->market_cap_usd, 2) : 'N/A' }}
Status @if ($cryptoToView->is_active) Active @else Inactive @endif
{{-- Description --}} @if ($cryptoToView->description)
Description
{!! $cryptoToView->description !!}
@endif {{-- Social Links --}}
Social Links
@if ($cryptoToView->website_url) Website @endif @if ($cryptoToView->twitter) Twitter @endif @if ($cryptoToView->telegram) Telegram @endif @if ($cryptoToView->reddit) Reddit @endif
@endif