/home/techb158/immovalet.com/platform/core/base/resources/views/forms
Edit: /home/techb158/immovalet.com/platform/core/base/resources/views/forms/form-tabs.blade.php (3464B)
@extends('core/base::layouts.master')
@section('content')
@if ($showStart)
{!! Form::open(Arr::except($formOptions, ['template'])) !!}
@endif
@php do_action(BASE_ACTION_TOP_FORM_CONTENT_NOTIFICATION, request(), $form->getModel()) @endphp
@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
{!! apply_filters(BASE_FILTER_REGISTER_CONTENT_TAB_INSIDE, null, $form->getModel()) !!}
@foreach ($form->getMetaBoxes() as $key => $metaBox)
{!! $form->getMetaBox($key) !!}
@endforeach
@php do_action(BASE_ACTION_META_BOXES, 'advanced', $form->getModel()) @endphp
@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