@extends('backend.master_structure') @section('content') @php use App\DashboardModel; $dash_model_instace = new DashboardModel(); $top_cat_qr = $dash_model_instace->get_top_category(); $url = Request::url(); $word = "si-equipment" @endphp @if(strpos($url, $word) !== false) @php $data_categories_qr = $dash_model_instace->get_data_category($word); @endphp @endif @php use App\MasterModel; $master_instance = new MasterModel(); @endphp

SI Equipments

{!! Form::open(array('url' => '/accounts/siequipment-insert', 'id'=>'add_property_form', 'method'=>'post', 'files'=> true, 'enctype'=>'multipart/form-data'))!!}

Enter Details Below


@foreach($add_form_field as $form_field) @if($form_field->field_type == "YesNo")
@endif @if($form_field->field_type == "Text - Single Line")
field_required == 1) required @endif>
@endif @if($form_field->field_type == "Textarea")
@endif @if($form_field->field_type == "Select")
@endif @if($form_field->field_type == "Custom") @if($form_field->field_name == "group_desc")
@elseif($form_field->field_name == 'group_category')
@elseif($form_field->field_name == 'group_photo')
field_required == 1) required @endif onchange="ValidateSingleInput(this);" data-height="180" />
@endif @endif @if($form_field->field_type == "Section_Title")

{{$form_field->field_text}}

@endif @endforeach
{!! Form::close()!!}
@endsection