@extends('layouts.admin-master') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if (Session::has('success'))
  • {{ Session::get('success') }}
@endif

Add Form Sections

@csrf

Form Fields

@foreach($section_field as $section) @endforeach
Label Field Name Field Type Visibility Required Rating Factor sort Created At Action
{{$section->Label}} {{$section->field_name}} {{$section->field_type}} {{$section->visible}} {{$section->required}} {{$section->rating_factor}} {{$section->sorting}} {{$section->created_at}}
@endsection