@extends('layouts.admin') @section('page_title') @parent نظرات مشتریان @endsection @section('main')

نظرات مشتریان

@include('admin.error')
@can('new-testimonials')

تعریف نظرات مشتریان

{!! Form::open(['url' => '/admin/testimonials/newhandle', 'method' => 'post','enctype'=>'multipart/form-data']) !!}
بارگذاری تصویر
your image

ابعاد تصویر میبایست 200 در 200 پیکسل

{!! Form::close() !!}
@endcan @can('show-testimonials')
@foreach($tests as $test) @can('edit-testimonials') @endcan @can('delete-testimonials') @endcan @endforeach
تصویر نام عنوان شغلی
{{$test->name}} {{$test->title}} @can('edit-testimonials') @endcan @can('delete-testimonials') @endcan
@endcan
@endsection