@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/custom_fields/general.create_fieldset') }} @parent @stop @section('header_right') {{ trans('general.back') }} @stop {{-- Page content --}} @section('content')
{{ Form::open(['route' => 'admin.custom_fields.store', 'class'=>'form-horizontal']) }}
{!! $errors->first('name', ' :message') !!}
{{ Form::close() }}

About Fieldsets

Fieldsets work like containers of the custom fields you've created. This allows you to group commonly used custom attributes together for easy associations.

@stop