@extends('admin.layouts.main') @section('content')

Testimonials Management

{{ $page }}

{{ Form::model($testimonial, ['route' => ['testimonial.update', $testimonial->id], 'method' => 'put', 'role' => 'form','enctype'=>'multipart/form-data','id'=>'testimonialEditForm'] ) }}
@foreach($messageArr as $message) @if(session()->has($message))
{{ session()->get($message) }}
@endif @endforeach
Fields marked as (*) are Mandatory
{{ Form::label('username','User Name *') }}
{{ Form::text('username',null,['class'=>'form-control','placeholder'=>'User Name','autocomplete'=>'off'],old('username'))}} @if($errors->has('username')) {{ $errors->first('username') }} @endif
{{ Form::label('user_role','User Role *') }}
{{ 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::label('description','User Description *') }}
@if($errors->has('description')) {{ $errors->first('description') }} @endif
Cancel
{!! Form::close() !!}
@stop @section('footer_script') @stop