@extends('admin.layout') @section('content')
{{ __('Update Counter Section Image') }}
@csrf

@if (!empty($info->counter_section_image)) image @else ... @endif
{{ __('Choose Image') }}
@error('counter_section_image')

{{ $message }}

@enderror
{{ __('Update Counter Section Info') }}
@includeIf('admin.partials.languages')
@csrf
@error('title')

{{ $message }}

@enderror
{{ __('Counter Informations') }}
@includeIf('admin.partials.languages')
{{ __('Add') }}
@if (count($counters) == 0)

{{ __('NO INFORMATION FOUND') . '!' }}

@else
@foreach ($counters as $counter) @endforeach
{{ __('Icon') }} {{ __('Amount') }} {{ __('Title') }} {{ __('Actions') }}
{{ $counter->amount }} {{ strlen($counter->title) > 20 ? mb_substr($counter->title, 0, 20, 'UTF-8') . '...' : $counter->title }}
@csrf
@endif
{{-- create modal --}} @include('admin.home-page.counter-section.create') {{-- edit modal --}} @include('admin.home-page.counter-section.edit') @endsection