@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pumps') @section('content') Bill Cycle Basic Settings Bill Cycle New Bill Cycle Active List Deactive List Add Bill Cycle {!! Form::open(['action' => 'BillCyclesController@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'=>'Billing Cycle Name', 'required'])}} {{Form::label('limitDays', 'Max. Limit Days', ['class'=>'required col-md-2'])}} {{Form::text('limitDays', '', ['class'=>'form-control', 'placeholder'=>'Max. Limit Days', 'required', 'data-parsley-type'=>'number', 'min'=> '1'])}} {{Form::submit('Submit', ['class'=>'btn btn-primary'])}} {{Form::reset('Reset', ['class'=>'btn btn-primary'])}} {!! Form::close() !!} @endsection