@extends('layouts/contentNavbarLayout') @section('title', 'Edit Contact Information') @section('content')

Edit Contact Information

Back to List
@csrf @method('PUT')
Edit Contact Information
@error('type')
{{ $message }}
@enderror
@error('title')
{{ $message }}
@enderror
@error('value')
{{ $message }}
@enderror
Enter the contact information value (URL, phone number, email, address, etc.)
@error('icon')
{{ $message }}
@enderror
Material Design Icon class (e.g., mdi-facebook, mdi-phone, mdi-email)
@error('color')
{{ $message }}
@enderror
Color for the icon
@error('sort_order')
{{ $message }}
@enderror
Lower numbers appear first
is_active) ? 'checked' : '' }}>
@error('description')
{{ $message }}
@enderror
Cancel
Current Information
@if($contactInfo->icon) @endif
{{ $contactInfo->title }}
{{ ucfirst(str_replace('_', ' ', $contactInfo->type)) }}
Value {{ $contactInfo->value }}
@if($contactInfo->description)
Description {{ $contactInfo->description }}
@endif
Status @if($contactInfo->is_active) Active @else Inactive @endif
Sort Order {{ $contactInfo->sort_order }}
Quick Actions
@csrf
Type Guide
Contact General contact information
Social Media Social media profiles and links
Address Physical addresses and locations
Email Email addresses
Phone Phone numbers
Website Website URLs
@endsection