@extends("backend.layouts.app") @section("title") Edit Testimonial @endsection @section("breadcrumbs") Testimonials Edit @endsection @section("content")

Edit Testimonial

Back to List
@csrf @method('PATCH')
@if($testimonial->image)

Current Image:

Current Testimonial Image
@endif

{{ $testimonial->image ? 'Change Image' : 'Upload Image' }}
@if($errors->has('image')) {{ $errors->first('image') }} @endif
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif
stars) == 5 ? 'checked' : '' }}> stars) == 4 ? 'checked' : '' }}> stars) == 3 ? 'checked' : '' }}> stars) == 2 ? 'checked' : '' }}> stars) == 1 ? 'checked' : '' }}>
@if($errors->has('stars')) {{ $errors->first('stars') }} @endif
Cancel
@endsection