@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pumps') @section('content') Testimonial Manage Testimonial New Testimonial Active List Deactive List Add New {!! Form::open(['action' => 'TestimonialController@store', 'method' => 'POST', 'class' => 'form-horizontal space-top','data-parsley-validate' , 'enctype'=>'multipart/form-data']) !!} {{Form::label('name', 'Testimonial Name', ['class'=>'required col-md-2'])}} {{Form::text('name', '', ['class'=>'form-control', 'placeholder'=>'Testimonial Name','required'])}} {{Form::label('image', 'Image', ['class'=>'col-md-2'])}} {{ Form::file('image', array('class' => 'form-control file-upload', 'accept'=>'image/*')) }} {{Form::label('description', 'Description', ['class'=>'col-md-2 required'])}} {{Form::submit('Submit', ['class'=>'btn btn-primary'])}} {{Form::reset('Reset', ['class'=>'btn btn-danger'])}} {!! Form::close() !!} @endsection