@extends('admin.layout') @section('content')
{{ __('Update About') }}
@includeIf('admin.partials.languages')
@csrf

@if (@$data->about_section_image != null) ... @else ... @endif
{{ __('Choose Image') }}
@error('about_section_image')
{{ $message }}
@enderror
@error('title')
{{ $message }}
@enderror
@error('subtitle')
{{ $message }}
@enderror
@error('button_text')
{{ $message }}
@enderror
@error('button_url')
{{ $message }}
@enderror
@error('features_title')
{{ $message }}
@enderror
{{ __('Features') }}
@includeIf('admin.partials.languages')
{{ __('Add') }}
@if (count($features) == 0)

{{ __('NO FEATURES FOUND') . '!' }}

@else
@foreach ($features as $feature) @endforeach
{{ __('Icon') }} {{ __('Title') }} {{ __('Serial Number') }} {{ __('Actions') }}
{{ strlen($feature->title) > 30 ? mb_substr($feature->title, 0, 30, 'UTF-8') . '...' : $feature->title }} {{ $feature->serial_number }}
@csrf
@endif
{{-- create modal --}} @include('admin.about-us.features.create') {{-- edit modal --}} @include('admin.about-us.features.edit') @endsection @section('script') @endsection