@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pumps') @section('content') Bill Cycle Basic Settings Bill Cycle Update Bill Cycle Active List Deactive List Edit Bill Cycle {!! Form::open(['action' => ['BillCyclesController@update', $billcycle->id], 'method' => 'POST', 'class' => 'form-horizontal space-top','data-parsley-validate']) !!} {{Form::label('name', 'Name', ['class'=>'required col-md-2'])}} {{Form::text('name', $billcycle->name, ['class'=>'form-control', 'placeholder'=>'Billing Cycle', 'required'])}} {{Form::hidden('_method', 'PUT')}} {{Form::submit('Update', ['class'=>'btn btn-primary'])}} {{Form::reset('Reset', ['class'=>'btn btn-primary'])}} {!! Form::close() !!} @endsection