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

{!! Form::label('shortcode', 'Short Code:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('shortcode', $value = null, ['class' => 'form-control', 'id' => 'shortcode', 'type' => 'text', 'placeholder' => 'Short Code']) !!}

{!! Form::label('tableName', 'Table Name:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('tableName', $value = null, ['class' => 'form-control', 'id' => 'tableName', 'type' => 'text', 'placeholder' => 'Enter Table Name']) !!}

{!! Form::label('fieldName', 'Field Name:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('fieldName', $value = null, ['class' => 'form-control', 'id' => 'fieldName', 'type' => 'text', 'placeholder' => 'Enter Field Name']) !!}

{!! Form::label('fkey', 'Foreign Key:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('fkey', $value = null, ['class' => 'form-control', 'id' => 'fkey', 'type' => 'text', 'placeholder' => 'Enter Foreign Key']) !!}

{!! 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