@extends('backend.layouts.master') @section('title', "Testimonials") @section('css') @endsection @section('content')

Testimonials

{!! Form::open(['route' => 'testimonials.store','method'=>'post','class'=>'needs-validation','novalidate'=>'','enctype'=>'multipart/form-data']) !!}
Please enter the name.
Please enter the position/company name.
Please enter the description.
Select your related testimonial image (320 x 280px).
Please select a image.
{!! Form::close() !!}

Call Action List

@if(!empty($testimonials)) @foreach($testimonials as $testimonial) @endforeach @endif
Image Name Position Action
{{@$testimonial->name}} {{ ucwords(@$testimonial->name) }} {{ ucwords(@$testimonial->position) }}
{{csrf_field()}}
@include('backend.testimonial.modal.edit') @endsection @section('js') {{-- --}} @endsection