@extends('layouts.app_admin') @section('content') Dashboard > Testimonials List > Add Testimonials {{ csrf_field() }} Name* @if ($errors->has('testimonials_name')) {{ $errors->first('testimonials_name') }} @endif Designation* @if ($errors->has('designation')) {{ $errors->first('designation') }} @endif Select Rating* Select Rating rating == '1') selected @endif >1 rating == '2') selected @endif>2 rating == '3') selected @endif>3 rating == '4') selected @endif>4 rating == '5') selected @endif>5 @if ($errors->has('select_rating')) {{ $errors->first('select_rating') }} @endif Image* Browse @if ($errors->has('image')) {{ $errors->first('image') }} @endif Description* {{ $testimonials->description }} Status* Select Status status == 'active') selected @endif>Active status == 'inactive') selected @endif>Inactive Update Cancel @endsection