@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pumps') @section('content') SMS Plan Basic Settings Loyalty Plan New SMS Plan Active List Deactive List New Plan {!! Form::open(['action' => 'PurchasePlanController@store', 'method' => 'POST', 'class' => 'form-horizontal space-top','data-parsley-validate']) !!} {{Form::label('name', 'Plan Name', ['class'=>'required col-md-2'])}} {{Form::text('name', '', ['class'=>'form-control', 'placeholder'=>'Plan Name','required'])}} {{Form::label('pType', 'Type', ['class'=>'required col-md-2'])}} {{Form::select('pType', $pType, null, ['class'=>'form-control', 'placeholder'=>'Select Type','required'])}} {{Form::label('quantity', 'Quantity', ['class'=>'required col-md-2'])}} {{Form::text('quantity', '', ['class'=>'form-control', 'placeholder'=>'Quantity','required','data-parsley-type'=>'number'])}} {{Form::label('amount', 'Amount Per Item', ['class'=>'required col-md-2'])}} {{Form::text('amount', '', ['class'=>'form-control', 'placeholder'=>'Amount','required','data-parsley-type'=>'number'])}} {{Form::submit('Submit', ['class'=>'btn btn-primary'])}} {{Form::reset('Reset', ['class'=>'btn btn-danger'])}} {!! Form::close() !!} @endsection