@extends('landlord.layout.main') @section('content') @if(session()->has('message'))
{{ session()->get('message') }}
@endif @if(session()->has('not_permitted'))
{{ session()->get('not_permitted') }}
@endif
{!! Form::open(['route' => 'testimonial.store', 'files' => true, 'method' => 'post']) !!}

{{trans('file.Testimonial Section')}}

{{trans('file.The field labels marked with * are required input fields')}}.


{!! Form::close() !!}
@if($testimonials) @foreach($testimonials as $key=>$testimonial) @endforeach @endif
{{trans('file.Image')}} {{trans('file.name')}} {{trans('file.action')}}
{{$key}} {{ $testimonial->name }}
@csrf
@endsection @push('scripts') @endpush