@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pumps') @section('content') Alert Type Basic Settings Alert Type New Alert Type Active List Deactive List Add Bill Cycle {!! Form::open(['action' => 'AlertTypesController@store', 'method' => 'POST', 'class' => 'form-horizontal space-top','data-parsley-validate']) !!} {{Form::label('name', 'Name', ['class'=>'required col-md-2'])}} {{Form::text('name', '', ['class'=>'form-control', 'placeholder'=>'Alert Type Name', 'required'])}} {{Form::label('days', 'Expiry Date Before days', ['class'=>'required col-md-2'])}} {{Form::text('days', '', ['class'=>'form-control', 'placeholder'=>'Expiry Date Before days', 'required', 'data-parsley-type'=>'number', 'min'=> '0'])}} {{Form::submit('Submit', ['class'=>'btn btn-primary'])}} {{Form::reset('Reset', ['class'=>'btn btn-primary'])}} {!! Form::close() !!} @endsection