@extends('layouts.admin_default') @section('content')
{!! Form::open(['method'=>'PUT','route'=>['whychoose.update', $result->id], 'class'=>'form-first FormValidate', 'files'=>true, 'autocomplete' => 'off']) !!}
{!! Form::textarea('description', $result->description, ['class' => 'form-control ckeditor']) !!}

Our Speciality

@php $speciality_count = 0; @endphp @if(!empty($result->our_speciality)) @foreach(json_decode($result->our_speciality) as $spkey => $spvalue) @php $speciality_count++; @endphp @endforeach @endif
Icon Title
@if(!empty($spvalue->image))
@endif

Rotating Image

@php $rotat_img_count = 0; @endphp @if(!empty($result->rotating_images)) @foreach(json_decode($result['rotating_images'], true) as $rtimgkey => $rtimgvalue) @php $rotat_img_count++; @endphp @endforeach @endif
Image
@if(!empty($rtimgvalue['image']))
@endif

{!! Form::textarea('why_are_we_different', $result->why_are_we_different, ['class' => 'form-control ckeditor']) !!}
{!! Form::textarea('why_are_we_unique', $result->why_are_we_unique, ['class' => 'form-control ckeditor']) !!}
Back
{!! Form::close() !!}
@endsection