@extends('admin.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('admin.partials.rtl-style') @section('content')
{{ __('Update Testimonial Section Backgroud Image') }}
@csrf

@if (@$themeInfo->testimonial_section_image != null) ... @else ... @endif
{{ __('Choose Image') }}

{{ __('Update Testimonial Section') }}
@includeIf('admin.partials.languages')
@csrf
@if ($settings->theme_version == 2)
@endif @if ($settings->theme_version == 3)
@endif
{{ __('Testimonials') }}
@includeIf('admin.partials.languages')
{{ __('Add') }}
@if (count($testimonials) == 0)

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

@else
@if ($themeInfo->theme_version == 2) @endif @foreach ($testimonials as $testimonial) @if ($themeInfo->theme_version == 2) @endif @endforeach
{{ __('Image') }}{{ __('Name') }} {{ __('Occupation') }} {{ __('Comment') }} {{ __('Actions') }}
@if (is_null($testimonial->image)) - @else client image @endif {{ $testimonial->name }} {{ $testimonial->occupation }} {{ strlen($testimonial->comment) > 50 ? mb_substr($testimonial->comment, 0, 50, 'UTF-8') . '...' : $testimonial->comment }}
@csrf
@endif
{{-- create modal --}} @include('admin.home-page.testimonial-section.create') {{-- edit modal --}} @include('admin.home-page.testimonial-section.edit') @endsection