@extends('layouts/acc_layout') @section('title', '| OTS Period') @section('content')
OTS Period List
{!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('name', ' Name:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('name',null, ['class' => 'form-control', 'id' => 'name', 'type' => 'text', 'placeholder' => 'Enter Period Name']) !!}

{!! Form::label('interestRate', 'Period Interest Rate:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('interestRate',null, ['class' => 'form-control', 'id' => 'interestRate', 'type' => 'text', 'placeholder' => 'Enter Period Interest Rate']) !!}

{!! Form::label('months', 'Period Month:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('months',['1'=>'1','2'=>'2','3'=>'3','4'=>'4','5'=>'5','6'=>'6','7'=>'7','8'=>'8','9'=>'9','10'=>'10','11'=>'11','12'=>'12',],null, ['class' => 'form-control', 'id' => 'month', 'type' => 'text', 'placeholder' => 'Enter Period Month']) !!}

{!! Form::label('submit', ' ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']); !!} Close
{!! Form::close() !!}
@endsection