@extends('admin.layouts.master') @section('title', 'Edit Testimonial') @section('css') @endsection @section('content')

{{ __('Edit Testimonial') }}

@csrf
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
@if ($errors->has('position'))

{{ $errors->first('position') }}

@endif
@if ($errors->has('message'))

{{ $errors->first('message') }}

@endif
rating == '1' ? 'checked' : '' }}>
rating == '2' ? 'checked' : '' }}>
rating == '3' ? 'checked' : '' }}>
rating == '4' ? 'checked' : '' }}>
rating == '5' ? 'checked' : '' }}>
@if ($errors->has('order_no'))

{{ $errors->first('order_no') }}

@endif
Testimonial Image
Testimonial Image

Add Testimonial Image

@endsection @section('js') @endsection