@extends('backend.admin-master') @section('site-title') {{__('Key Features')}} @endsection @section('style') @endsection @section('content')
@include('backend/partials/message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif
@if(get_static_option('home_page_variant') == '04')

{{__('New Key Features Section Settings')}}

@csrf
@foreach($all_languages as $key => $lang)
@endforeach
@endif

{{__('Key Features Items')}}

@php $b=0; @endphp @foreach($all_key_features as $key => $key_feature)
@foreach($key_feature as $data) @endforeach
{{__('ID')}} {{__('Icon')}} {{__('Title')}} {{__('Image')}} {{__('Description')}} {{__('Action')}}
{{$data->id}} {{$data->title}} @php $key_feature_img = get_attachment_image_by_id($data->image,null,true); $img_url = ''; @endphp @if (!empty($key_feature_img))
@php $img_url = $key_feature_img['img_url']; @endphp @endif
{{$data->description}}
@php $b++; @endphp @endforeach

{{__('New Key Features')}}

@csrf
{{__('recommended image size is 370x250 pixel')}}
@include('backend.partials.media-upload.media-upload-markup') @endsection @section('script') @include('backend.partials.media-upload.media-js') @endsection