@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pumps') @section('content')
Pay Mode

New Pay Mode

{!! Form::open(['action' => 'PaymodesController@search', 'method' => 'GET', 'class' => 'form-horizontal']) !!} {!! Form::close() !!} {!! Form::open(['action' => 'PaymodesController@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'=>'Pay Mode Name','required'])}}
{{Form::submit('Submit', ['class'=>'btn btn-primary'])}} {{Form::reset('Reset', ['class'=>'btn btn-primary'])}}
{!! Form::close() !!}
@endsection