@extends('backend.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('backend.partials.rtl-style') @section('content')
@if ($settings->theme_version != 3)
{{ __('Update Testimonial Section Backgroud Image') }}
@csrf

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

@endif
{{ __('Update Testimonial Section') }}
@includeIf('backend.partials.languages')
@csrf
@if ($settings->theme_version != 3)
@endif
{{ __('Testimonials') }}
@includeIf('backend.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') }} {{ __('Actions') }}
@if (is_null($testimonial->image)) - @else client image @endif {{ $testimonial->name }} {{ $testimonial->occupation }}
@endif
{{-- create modal --}} @include('backend.home-page.testimonial-section.create') {{-- edit modal --}} @include('backend.home-page.testimonial-section.edit') @endsection