@extends('layouts.app') @section('content')
@include('layouts.leftside-menubar')
@include('components.pages-bar',['pageTitle' =>''. trans('Website Settings').' / '.trans('Testimonial') .' / '. trans('Add').'']) @include('components.sectionbar.frontmanagement-bar')
{{ csrf_field() }}
{!! Form::text('title', NULL, array('id' => 'title','required', 'class' => 'form-control', 'placeholder' => trans('Title'))) !!} @if ($errors->has('title')) {{ $errors->first('title') }} @endif
{!! Form::textarea('message', NULL, array('rows' => '3','id' => 'message', 'required', 'class' => 'form-control', 'placeholder' => trans('Message'))) !!} @if ($errors->has('message')) {{ $errors->first('message') }} @endif
{!! Form::select('status',status(), old('status'), array('id' => 'status', 'class' => 'form-control', 'placeholder' => trans('Choose'))) !!} @if ($errors->has('status')) {{ $errors->first('status') }} @endif
{!! Form::close() !!}
@component('components.cropper.element',['width'=>'111','height'=>'113','type'=>'circle']) @endcomponent @endsection