@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 ($data->theme_version == 1)
{{ __('Testimonials Section Image') }}
@csrf

@if (!empty($data->testimonials_section_image)) image @else ... @endif
{{ __('Choose Image') }}
@error('image')

{{ $message }}

@enderror
@endif
{{ __('Testimonials') }}
@includeIf('backend.partials.languages')
{{ __('Add') }}
@if (count($testimonials) == 0)

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

@else
@foreach ($testimonials as $testimonial) @endforeach
{{ __('Image') }} {{ __('Name') }} {{ __('Occupation') }} {{ __('Serial Number') }} {{ __('Actions') }}
client {{ $testimonial->name }} {{ $testimonial->occupation }} {{ $testimonial->serial_number }} {{ __('Edit') }}
@csrf
@endif
{{-- create modal --}} @include('backend.home-page.testimonial-section.create') {{-- edit modal --}} @include('backend.home-page.testimonial-section.edit') @endsection