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

{!! Form::label('parentId', 'Parent:', ['class' => 'col-sm-3 control-label']) !!}

{!! Form::label('description', 'Description:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::textarea('description', $value = null, ['class' => 'form-control textarea', 'id' => 'description', 'rows' => 5, 'placeholder' => 'Enter description', 'type' => 'textarea']) !!}

{!! Form::label('isParent', 'Is Parent:', ['class' => 'col-sm-3 control-label']) !!}
{{Form::checkbox('isParent', 1)}}

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