/home/techb158/immovalet.com/platform/core/base/resources/views/forms
Edit: /home/techb158/immovalet.com/platform/core/base/resources/views/forms/form-content-only.blade.php (493B)
@if ($showStart)
{!! Form::open(Arr::except($formOptions, ['template'])) !!}
@endif
@if ($showFields)
@foreach ($fields as $field)
@if (!in_array($field->getName(), $exclude))
{!! $field->render() !!}
@endif
@endforeach
@endif
@if ($showEnd)
{!! Form::close() !!}
@endif
@if ($form->getValidatorClass())
@push('footer')
{!! $form->renderValidatorJs() !!}
@endpush
@endif