Files
snipe-it/app/views/backend/custom_fields/create_field.blade.php
T
2015-11-25 15:40:58 -08:00

14 lines
458 B
PHP

@extends('backend/layouts/default')
@section('content')
{{ Form::open(["url" =>"/custom_fieldsets/create-field"])}}
Name: {{ Form::text("name")}}<br>
type: {{ Form::select("element",["text" => "Text Box"])}}<br>
format: {{ Form::select("format",predefined_formats(),"ANY") }}
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