{{ Form::model($testimonial, ['route' => ['testimonial.update', $testimonial->id], 'method' => 'put', 'role' => 'form','enctype'=>'multipart/form-data','id'=>'testimonialEditForm'] ) }}
Fields marked as (*) are Mandatory
{{ Form::text('username',null,['class'=>'form-control','placeholder'=>'User Name','autocomplete'=>'off'],old('username'))}}
@if($errors->has('username'))
{{ $errors->first('username') }}
@endif
{{ Form::text('user_role',null,['class'=>'form-control','placeholder'=>'User Role','autocomplete'=>'off'],old('user_role'))}}
@if($errors->has('user_role'))
{{ $errors->first('user_role') }}
@endif
{{ Form::textarea('description',null,['class'=>'form-control','placeholder'=>'User Description','autocomplete'=>'off','rows'=>'2','maxlength'=>'250'],old('description'))}}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif