@extends('backend/layouts/default') {{-- Page title --}} @section('title') @lang('admin/custom_fields/general.create_field') @parent @stop @section('content')
@lang('general.back')

@lang('admin/custom_fields/general.create_field')

{{ Form::open(['route' => 'admin.custom_fields.store-field', 'class'=>'form-horizontal']) }}
{{ $errors->first('name', '
:message') }}
{{ Form::select("element",["text" => "Text Box"])}} {{ $errors->first('element', '
:message') }}
{{ Form::select("format",predefined_formats(),"ANY", array('class'=>'form-control')) }} {{ $errors->first('format', '
:message') }}
{{ $errors->first('custom_format', '
:message') }}
@lang('button.cancel')
{{ Form::close() }}
@stop