@extends('layouts/acc_layout') @section('title', '| New Budget Configuration') @section('content')
Add Budget Configuration
{!! Form::open(['url' => '', 'id' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups']) !!}
{!! Form::label('parentLedger', 'Parent Ledger:', ['class' => 'col-sm-12 control-label']) !!}
{!! Form::label('parentNature', 'Parent Nature:', ['class' => 'col-sm-12 control-label']) !!}
{{-- CHILD ROW INCREMENTABLE --}}
{!! Form::label('childLedger', 'Child Ledger:', ['class' => 'col-sm-12 control-label']) !!}
{!! Form::label('childNature', 'Child Nature:', ['class' => 'col-sm-12 control-label']) !!}
{!! Form::label('percentage', 'Percentage:', ['class' => 'col-sm-12 control-label']) !!}
{!! Form::text('percentage', $value = null, ['class' => 'form-control', 'id' => 'percentage', 'type' => 'text']) !!}
Child Account Nature Percentage Actions

{!! Form::label('submit', ' ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::close() !!}
@endsection