@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/custom_fields/general.create_field') }} @parent @stop @section('content') @section('header_right') {{ trans('general.back') }} @stop {{-- Page content --}} @section('content')
{{ Form::open(['route' => 'fields.store', 'class'=>'form-horizontal']) }}
{!! $errors->first('name', ' :message') !!}
{!! Form::customfield_elements('element', Input::old('element'), 'field_element select2 form-control') !!} {!! $errors->first('element', ' :message') !!}
{{ Form::select("format",\App\Helpers\Helper::predefined_formats(),"ANY", array('class'=>'format select2 form-control')) }} {!! $errors->first('format', ' :message') !!}
{{ Form::close() }}

About Custom Fields

Custom fields allow you to add arbitrary attributes to assets.

@stop @section('moar_scripts') @stop