14 lines
646 B
PHP
14 lines
646 B
PHP
@extends('backend/layouts/default')
|
|
@section('content')
|
|
|
|
|
|
{{ Form::open(["url" =>"/custom_fieldsets/create-field"])}}
|
|
Name: {{ Form::text("name")}}<span class="alert-msg"><?= $errors->first('name'); ?></span><br>
|
|
type: {{ Form::select("element",["text" => "Text Box"])}}<span class="alert-msg"><?= $errors->first('element'); ?></span><br>
|
|
format: {{ Form::select("format",predefined_formats(),"ANY") }}<span class="alert-msg"><?= $errors->first('format'); ?></span>
|
|
Custom Format (if selected): {{ Form::text("custom_format") }}<br>
|
|
<input type='submit'>
|
|
{{ Form::close() }}
|
|
<br><a href='/custom_fieldsets'>Back to Custom Fieldset List</a>
|
|
@stop
|