@extends('layouts.master') @section('css') @endsection @section('content') @if (isset($eventFormStaticFields) && count($eventFormStaticFields) > 0)

Form Fields

Required Fields

@if (isset($eventFormStaticFields) && count($eventFormStaticFields) > 0) @foreach ($eventFormStaticFields as $key => $eventFormField) @endforeach @endif
Sr. No. Display Label Label Default Value Helper Text Index Type Required Visible Options Actions
{{ $key + 1 }} @if ($eventFormField->default_value) @else

-

@endif
@if ($eventFormField->options) @if (count($eventFormField->options) > 0) @foreach ($eventFormField->options as $optionKey => $options)
value = {{ $options['value'] }} , title = {{ $options['title'] }}
@endforeach @endif @else

-

@endif
{{-- --}}

User Defined Fields

@if (isset($eventFormDynamicFields) && count($eventFormDynamicFields) > 0) @foreach ($eventFormDynamicFields as $key => $eventFormField) @endforeach @endif
Sr. No. Display Label Label Default Value Helper Text Index Type Required Visible Options Actions
{{ $key + 1 }} @if ($eventFormField->default_value) @else

-

@endif
@if ($eventFormField->options) @if (count($eventFormField->options) > 0) @foreach ($eventFormField->options as $optionKey => $options)
value = {{ $options['value'] }} , title = {{ $options['title'] }}
@endforeach @endif @else

-

@endif
@else

Need to click on the button for add some important field for your events.

@endif {{-- Edit input fields form --}} @endsection @section('js') @endsection