@extends('backend/layouts/default') @section('content') {{-- ['url' => '/admin/custom_fields/create-field'] --}} {{ Form::open(["route" => 'admin.custom_fields.store-field'] )}} Name: {{ Form::text("name")}}first('name'); ?>
type: {{ Form::select("element",["text" => "Text Box"])}}first('element'); ?>
format: {{ Form::select("format",predefined_formats(),"ANY") }}first('format'); ?> Custom Format (if selected): {{ Form::text("custom_format") }}
{{ Form::close() }}
{{ link_to_route('admin.custom_fields.index',"Back to Custom Fieldset List") }} @stop