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

{{ __('Word counter') }}

{{ __('Word counter') }}
@include('shared.message')
@csrf
@if ($errors->has('content')) {{ $errors->first('content') }} @endif
@if(isset($content))
{{ __('Result') }}
{{ __('Words') }}
{{ number_format($wordCount, 0, __('.'), __(',')) }}
{{ __('Letters') }}
{{ number_format($letterCount, 0, __('.'), __(',')) }}
@endif