@extends('admin.layout') @section('content')

{{ __('Testimonials') }}

{{ __('Edit Testimonial') }}

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

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

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

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

@endif

{{ __('Upload 70X70 (Pixel) Size image for best quality. Only jpg, jpeg, png image is allowed.') }}

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

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

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

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

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

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

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

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

@endif
@endsection