@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pumps') @section('content') SMS Format Basic Settings SMS Format New SMS Format Active List Deactive List Add Format {!! Form::open(['action' => 'SmsFormatsController@store', 'method' => 'POST', 'class' => 'form-horizontal space-top','data-parsley-validate']) !!} {{Form::label('type', 'Module Type', ['class'=>'required col-md-2'])}} {{ Form::select('type', ['1' => 'Credit Sales', '2' => 'Loyalty Sales', '3' => 'Others'], null, ['placeholder'=>'Select Module','class'=>'form-control','required']) }} {{Form::label('transaction', 'Transaction Type', ['class'=>'required col-md-2'])}} {{ Form::select('transaction', $trans, null, ['placeholder'=>'Select Transaction','class'=>'form-control','required']) }} {{Form::label('format', 'SMS Format', ['class'=>'required col-md-2'])}} {{Form::textarea('format', '', ['class'=>'form-control', 'cols'=>'5', 'rows'=>'100', 'style'=>'height:150px;', 'placeholder'=>'SMS Format', 'required'])}} Pump Name : #pumpName# Credit Customer : #transporterName# Vehicle No : #regNo# Quantity : #qty# Rupees : #rs# Date & Time : #dateTime# {{Form::submit('Submit', ['class'=>'btn btn-primary'])}} {{Form::reset('Reset', ['class'=>'btn btn-primary'])}} {!! Form::close() !!} @endsection