@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pumps') @section('content') SMS Plan Basic Settings SMS Plan New SMS Plan Active List Deactive List Add SMS Plan {!! Form::open(['action' => 'SmsPlansController@store', 'method' => 'POST', 'class' => 'form-horizontal space-top','data-parsley-validate']) !!} {{Form::label('name', 'SMS Plan Name', ['class'=>'required col-md-2'])}} {{Form::text('name', '', ['class'=>'form-control', 'placeholder'=>'SMS Plan Name','required'])}} {{Form::label('count', 'SMS Count', ['class'=>'required col-md-2'])}} {{Form::text('count', '', ['class'=>'form-control', 'placeholder'=>'Number of Count','required','data-parsley-type'=>'number'])}} {{Form::label('amount', 'Amount', ['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-primary'])}} {!! Form::close() !!} @endsection