PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
botble
/
platform
/
base
/
resources
/
views
/
forms
@extends('core/base::layouts.master') @section('content') <div class="form-content-area"> @if ($showStart) {!! Form::open(Arr::except($formOptions, ['template'])) !!} @endif @php do_action(BASE_ACTION_TOP_FORM_CONTENT_NOTIFICATION, request(), $form->getModel()) @endphp <div class="max-width-1200"> <div class="flexbox-grid no-pd-none"> <div class="flexbox-content"> @php do_action(BASE_ACTION_META_BOXES, 'main', $form->getModel()) @endphp <div class="widget meta-boxes"> <div class="widget-title"> <h4> <span> {{ trans('core/base::forms.basic_info_title') }}</span> </h4> </div> <div class="widget-body"> @if ($showFields) @foreach ($fields as $key => $field) @if ($field->getName() == $form->getBreakFieldPoint()) @break @else @unset($fields[$key]) @endif @if (!in_array($field->getName(), $exclude)) {!! $field->render() !!} @if ($field->getName() == 'name' && defined('BASE_FILTER_SLUG_AREA')) {!! apply_filters(BASE_FILTER_SLUG_AREA, null, $form->getModel()) !!} @endif @endif @endforeach @endif </div> </div> @foreach ($form->getMetaBoxes() as $key => $metaBox) {!! $form->getMetaBox($key) !!} @endforeach @php do_action(BASE_ACTION_META_BOXES, 'advanced', $form->getModel()) @endphp </div> <div class="flexbox-content flexbox-right"> {!! $form->getActionButtons() !!} @php do_action(BASE_ACTION_META_BOXES, 'top', $form->getModel()) @endphp @foreach ($fields as $field) @if (!in_array($field->getName(), $exclude)) <div class="widget meta-boxes"> <div class="widget-title"> <h4>{!! Form::customLabel($field->getName(), $field->getOption('label'), $field->getOption('label_attr')) !!}</h4> </div> <div class="widget-body"> {!! $field->render([], false) !!} </div> </div> @endif @endforeach @php do_action(BASE_ACTION_META_BOXES, 'side', $form->getModel()) @endphp </div> </div> @if ($showEnd) {!! Form::close() !!} @endif @stop @if ($form->getValidatorClass()) @if ($form->isUseInlineJs()) {!! Assets::scriptToHtml('jquery') !!} {!! Assets::scriptToHtml('form-validation') !!} {!! $form->renderValidatorJs() !!} @else @push('footer') {!! $form->renderValidatorJs() !!} @endpush @endif @endif
[-] form.blade.php
[edit]
[-] form-no-wrap.blade.php
[edit]
[+]
..
[-] form-tree-category.blade.php
[edit]
[-] form-tabs.blade.php
[edit]
[-] form-limit-size.blade.php
[edit]
[-] form-modal.blade.php
[edit]
[+]
partials
[-] form-content-only.blade.php
[edit]
[+]
fields