@extends('Layouts.erp_master') @section('content')
@csrf
Dynamic Type
Select Type
@foreach ($typeData as $Row)
type_id == $Row->id) ? "selected" : ""}} value="{{$Row->id}}">{{$Row->name}}
@endforeach
Module
Select module
@foreach ($module as $Row)
module_id == $Row->id) ? "selected" : ""}} value="{{$Row->id}}">{{$Row->module_name}}
@endforeach
Title
Input Type
Select Type
input_type == "text") ? "selected" : ""}} value="text">Text Field
input_type == "select") ? "selected" : ""}} value="select">Select Box
input_type == "checkbox") ? "selected" : ""}} value="checkbox">Checkbox
input_type == "radio") ? "selected" : ""}} value="radio">Radio Button
input_type == "textarea") ? "selected" : ""}} value="textarea">Textarea Field
Order
@include('elements.button.common_button', ['back' => true, 'submit' => [ 'action' => 'update', 'title' => 'update', 'id' => 'submitBtn', 'exClass' => 'float-right' ]])
@endsection