@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' => 'fieldsets.store', 'class'=>'form-horizontal']) }}
{!! $errors->first('name', '') !!}
{{ Form::close() }}

{{ trans('admin/custom_fields/general.about_fieldsets_title') }}

{{ trans('admin/custom_fields/general.about_fieldsets_text') }}

@stop