@if($forms->count() > 0)
@foreach($forms->take(5) as $form)
{{ substr($form->name, 0, 1) }}
{{ $form->name }}
@if($form->description)
{{ Str::limit($form->description, 50) }}
@endif
{{ $form->submissions_count ?? 0 }}
{{ __('form.submissions') }}
@if(!$loop->last)
@endif
@endforeach
@if($forms->count() > 5)
@endif
@else
@endif