@extends('admin.layouts.master') @section('content')

{{ __('Edit') }} {{ $introduction_section->group->name }} {{ __('Section Titles') }}

@csrf
@if ($errors->has('title'))

{{ $errors->first('title') }}

@endif
@if ($errors->has('subtitle'))

{{ $errors->first('subtitle') }}

@endif
@if ($errors->has('description'))

{{ $errors->first('description') }}

@endif
@if ($errors->has('type'))

{{ $errors->first('type') }}

@endif
@if ($errors->has('images'))

{{ $errors->first('images') }}

@endif @if ($introduction_section->images)
@foreach (json_decode($introduction_section->images) as $image) @endforeach
@endif
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
@endsection @section('js') @endsection