@extends('admin.master') @section('title') Manage Testimonials @endsection @section('content')

Manage Testimonials

# Customer Name Gender Star Rating Remark Created At Action
Add/Update Testimonial
{!! Form::open(['id' => 'testimonialForm']) !!} {!! Form::hidden('id', null, ['id' => 'testimonialId']) !!}
{!! Form::label('customer_name', 'Customer Name', ['class' => 'form-label']) !!} * {!! Form::text('customer_name', null, [ 'class' => 'form-control form-control-sm', 'id' => 'testimonialCustomerName', 'required' => true, 'placeholder' => 'Enter Customer Name', ]) !!}
{!! Form::label('gender', 'Gender', ['class' => 'form-label']) !!} * {!! Form::select('gender', ['male' => 'Male', 'female' => 'Female', 'other' => 'Other'], null, [ 'class' => 'form-control form-control-sm', 'id' => 'testimonialGender', 'required' => true, 'placeholder' => 'Select Gender', ]) !!}
{!! Form::label('star_rating', 'Star Rating', ['class' => 'form-label']) !!} * {!! Form::number('star_rating', null, [ 'class' => 'form-control form-control-sm', 'id' => 'testimonialStarRating', 'required' => true, 'placeholder' => 'Enter Star Rating (1-5)', 'min' => 1, 'max' => 5, ]) !!} Enter a value between 1 and 5
{!! Form::label('remark', 'Remark', ['class' => 'form-label']) !!} {!! Form::textarea('remark', null, [ 'class' => 'form-control form-control-sm', 'id' => 'testimonialRemark', 'rows' => 4, 'placeholder' => 'Enter Remark', ]) !!}
{!! Form::close() !!}
@endsection @section('javascript') @endsection