@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pumps') @section('content') SMS and Notification Template Basic Settings SMS Template Active List Deactive List Add Template {!! Form::open(['action' => 'SMSTemplatesController@store', 'method' => 'POST', 'class' => 'form-horizontal space-top','data-parsley-validate']) !!} {{Form::label('action', 'Action', ['class'=>'required col-md-2'])}} {{Form::text('action', '', ['class'=>'form-control', 'placeholder'=>'Action', 'required'])}} {{Form::label('sendTo', 'Send To', ['class'=>'required col-md-2'])}} {{Form::text('sendTo', null, ['class'=>'form-control', 'placeholder'=>'SMS Send To', 'required'])}} {{Form::label('description', 'Description', ['class'=>'required col-md-2'])}} {!! Form::textarea('description', null, ['class' => 'form-control', 'cols' => 20, 'rows' =>10, 'style'=>'height: 200px;', 'required']) !!} {{Form::label('langType', 'Language', ['class'=>'required col-md-2'])}} {{Form::select('langType', ['1'=>'English', '2'=>'Hindi'], null, ['class'=>'form-control','required'])}} {{Form::label('compalsaryOpt', 'Compulsory Option', ['class'=>'required col-md-2'])}} {{Form::select('compalsaryOpt', ['1'=>'No', '2'=>'Yes'], null, ['placeholder'=>'Select Compulsory Option','class'=>'form-control','required'])}} {{Form::label('smsType', 'SMS Type', ['class'=>'required col-md-2'])}} {{Form::text('smsType', '', ['class'=>'form-control', 'placeholder'=>'SMS Type', 'required'])}} {{Form::label('alertType', 'Alert Type', ['class'=>'required col-md-2'])}} {{Form::select('alertType', ['1'=>'Text SMS', '2'=>'App Notification','3'=>'Whatsapp SMS'], null, ['placeholder'=>'Select Alert Type','class'=>'form-control','required'])}} {{Form::submit('Submit', ['class'=>'btn btn-success'])}} {{Form::reset('Reset', ['class'=>'btn btn-danger'])}} {!! Form::close() !!} @endsection