Files
snipe-it/app/views/backend/custom_fields/create_field.blade.php
T
2015-10-22 00:38:07 -07:00

10 lines
333 B
PHP

{{ 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(),"ALPHA") }}
Custom Format (if selected): {{ Form::text("custom_format") }}<br>
<input type='submit'>
{{ Form::close() }}