@extends('admin.master') @section('main_content')

Edit Page Content

@include('admin._nav_top')
@csrf
@php $user = DB::table('users')->where('id', $data->user_id)->first(); @endphp

Family Name : {{$data->family_name}}


@if($data->images) @php $familyImages = explode(',', $data->images); @endphp
@foreach($familyImages as $image) Family Image @endforeach
@endif
Cancel
@endsection