@extends('user.layout') @includeIf('user.partials.rtl-style') @section('content')
{{ __('Update Counter Section') }}
@if (!empty($userLanguages)) @endif
@csrf
...
{{ __('Choose Image') }}

{{ __('Recommended Image size : 670X480') }}

@if ($errors->has('image'))

{{ $errors->first('slider_img') }}

@endif
@error('title')
{{ $message }}
@enderror
@error('text')
{{ $message }}
@enderror
{{ __('Counter Information') }}
@if (!empty($userLanguages)) @endif
{{ __('Add') }}
@if (count($counters) == 0)

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

@else
@foreach ($counters as $counter) @endforeach
{{ __('Icon') }} {{ __('Amount') }} {{ __('Title') }} {{ __('Actions') }}
{{ $counter->amount }} {{ strlen($counter->title) > 30 ? mb_substr($counter->title, 0, 30, 'UTF-8') . '...' : $counter->title }}
@csrf
@endif
@includeIf('user.about.counter.create') @endsection