@extends('layouts.backend.app') @section('content')

{{ __('My Information') }}

@csrf
@php $json=json_decode($info->info->content ?? ''); $arr['title']= 'Support Phone Number 1'; $arr['id']= 'phone1'; $arr['type']= 'number'; $arr['placeholder']= 'Support Phone Number'; $arr['name']= 'phone1'; $arr['is_required'] = true; $arr['value'] = $json->phone1 ?? ''; echo input($arr); $arr['title']= 'Support Phone Number 2'; $arr['id']= 'phone2'; $arr['type']= 'number'; $arr['placeholder']= 'Support Phone Number'; $arr['name']= 'phone2'; $arr['value'] = $json->phone2 ?? ''; echo input($arr); @endphp
@php $arr['title']= 'Full address'; $arr['id']= 'location_input'; $arr['type']= 'text'; $arr['placeholder']= 'Enter Full Address'; $arr['name']= 'full_address'; $arr['is_required'] = true; $arr['value'] = $json->full_address ?? ''; echo input($arr); @endphp
{{ __('Publish') }}

@endsection @section('script') @endsection