@extends('layouts.master_backend') @section('content') @php $countFeatures = ($data_row->about_section_features!=null) ? 1 : 0; $featuresDecodeJson = json_decode($data_row->about_section_features); @endphp
{{Form::model($data_row,['route'=>'update-about-page','id'=>'home-page-form','files'=>true])}}

Banner Image

@if($data_row->about_section_banner!='' && $data_row->about_section_banner!=null) @endif

Introduction

{{ Form::text('about_section_tagline',null,['class'=>'form-control', 'placeholder'=>'Enter Tagline']) }}
{{ Form::text('about_section_heading',null,['class'=>'form-control', 'placeholder'=>'Enter Heading']) }}
{{ Form::textarea('about_section_desc',null,['class'=>'form-control', 'placeholder'=>'Enter Description','rows'=>2]) }}

Features


@if($countFeatures==1) @foreach($featuresDecodeJson as $key=>$features_data)
{{ Form::text('about_sect_features[title][]',$features_data->title,['class'=>'form-control', 'placeholder'=>'Enter Title']) }}
{{ Form::textarea('about_sect_features[short_desc][]',$features_data->short_desc,['class'=>'form-control', 'placeholder'=>'Enter Short Description','rows'=>2]) }}

@endforeach @endif

{{ Form::close() }}
{{ Form::text('about_sect_features[title][]',null,['class'=>'form-control', 'placeholder'=>'Enter Title']) }}
{{ Form::textarea('about_sect_features[short_desc][]',null,['class'=>'form-control', 'placeholder'=>'Enter Short Description','rows'=>2]) }}

{{ Form::hidden('ourteam_section[ids][]',0) }} {{ Form::hidden('ourteam_section[prv_img][]','') }}
{{ Form::text('ourteam_section[name][]',null,['class'=>'form-control', 'placeholder'=>'Enter Name']) }}
{{ Form::text('ourteam_section[position][]',null,['class'=>'form-control', 'placeholder'=>'Enter Position']) }}
{{ Form::text('ourteam_section[facebook_link][]',null,['class'=>'form-control', 'placeholder'=>'Enter Facebook Link']) }}
{{ Form::text('ourteam_section[twitter_link][]',null,['class'=>'form-control', 'placeholder'=>'Enter Twitter Link']) }}
{{ Form::text('ourteam_section[instagram_link][]',null,['class'=>'form-control', 'placeholder'=>'Enter Instagram Link']) }}
{{ Form::text('ourteam_section[linkedin_link][]',null,['class'=>'form-control', 'placeholder'=>'Enter Linkedin Link']) }}

{{-- require set var in js var --}} @endsection