@if (session()->has('success')) @endif @if (session()->has('error')) @endif
@if(!$formMode && !$viewMode) @endif
@if($formMode)
{{ $updateMode ? 'Edit Crypto ICO' : 'Add Crypto ICO' }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Type / ICO Type --}}
@error('type') {{ $message }} @enderror
@error('ico_ido_type') {{ $message }} @enderror
{{-- name + alias --}}
@error('name') {{ $message }} @enderror
@error('alias') {{ $message }} @enderror
{{-- Title + Slug --}}
@error('title') {{ $message }} @enderror
@error('slug') {{ $message }} @enderror
{{-- Category + Subcategory + Launchpad --}}
@error('ico_project_type_id') {{ $message }} @enderror
{{-- Website + Contract --}}
@error('ico_project_id') {{ $message }} @enderror
{{-- Image --}}
@error('image') {{ $message }} @enderror {{-- Show preview if new image is selected --}} @if ($image)
Preview
{{-- Otherwise show old image when editing --}} @elseif($oldImage)
Old Image
@endif
{{-- Dates --}}
@error('start_time') {{ $message }} @enderror
@error('end_time') {{ $message }} @enderror
{{--Manager Filed --}}
{{-- Soft/Hard Cap --}}
{{-- quntity coins --}}
@error('quantity_of_coin') {{ $message }} @enderror
@error('fund_asking_for') {{ $message }} @enderror
@error('total_coin') {{ $message }} @enderror
{{-- Social Media --}}
{{-- Final --}}
@error('seo_title') {{ $message }} @enderror
@error('meta_keywords') {{ $message }} @enderror
@error('meta_description') {{ $message }} @enderror
{{-- FAQs --}}
@foreach ($faqs as $index => $faq)
@if($index > 0) @endif
@endforeach

ICO Details (Multiple Rounds/Phases)

Add multiple ICO sale rounds with different pricing, dates, and allocation.

@if(!empty($cryptoDetails) && count($cryptoDetails) > 0)
@foreach($cryptoDetails as $index => $detail) @endforeach
# Total Supply Qty of Coin ICO Price Where to Buy Start Date End Date Sale Type Actions
{{ $index + 1 }}
Total Rounds Added: {{ count($cryptoDetails) }}
@else
No ICO rounds added yet. Click "Add New ICO Round" to add details.
@endif
@endif
All Crypto ICOs
{{-- Filters --}}
{{--
--}}
{{-- Table --}} @forelse ($cryptosIcos as $index => $crypto) @empty @endforelse
# Image Type Name Symbol Start Date End Date Approved Actions
{{ $index + 1 + ($cryptosIcos->currentPage() - 1) * $cryptosIcos->perPage() }} @if($crypto->imageUrl) @else No Image @endif @switch($crypto->ico_ido_type) @case(0) ICO @break @case(1) IDO @break @case(2) IEO @break @case(3) Presale @break @default - @endswitch {{ $crypto->name }} {{ $crypto->alias }} {{ date('d M Y', strtotime($crypto->start_time)) }} {{ date('d M Y', strtotime($crypto->end_time)) }} {!! $crypto->is_review ? 'Yes' : 'No' !!} {{-- --}}
No ICOs found.
{{ $cryptosIcos->links() }}