@extends('master.admin') @push('header.scripts') @stop @push('footer.scripts') @stop @section('content')

{{current_client(Auth::user()->id)->client_name}}

{{ $dataForm->name }}
@role(['superadmin','admin']) @endrole
@foreach($formFields as $row) @endforeach
Field ID Active Name Label Key External Key Required Order Actions
{{ $row->form_field_id }}
{{ $row->data_field_name }} {{ $row->form_field_label }} {{ $row->key }} {{ $row->external_key }} {{{ ($row->required_field == '1')?'Yes':'No' }}} {{ $row->data_form_field_order }}
Form ID {{ $dataForm->id }} DEMO
@foreach($formFields as $row) @if( $row->data_field_active == '1' )
@if( $row->data_field_type == 'Textfield' ) @endif @if( $row->data_field_type_id == '2' || $row->data_field_type_id == '5' || $row->data_field_type_id == '6' || $row->data_field_type_id == '7' ) @endif
@endif @endforeach
@stop