@extends('backend.layouts.master') @section('title') Edit Testimonial @endsection @section('content')
@include('backend/includes/sidebar')
@include('backend/includes/header')

Edit Testimonial

@if(count($errors) > 0)
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Add Page Form
@foreach($testimonials as $testimonial) @endforeach
Cancel
@include('backend/includes/footer')
@endsection