77 lines
4.0 KiB
PHP
77 lines
4.0 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('title', 'Edit Informasi Kontak - INUFA')
|
|
@section('header', 'Edit Informasi Kontak')
|
|
|
|
@section('content')
|
|
<div class="container mx-auto px-4 py-6">
|
|
<div class="bg-white rounded-lg shadow-lg p-6 max-w-2xl mx-auto">
|
|
@if(session('success'))
|
|
<div class="mb-4 p-4 bg-green-100 text-green-700 rounded">
|
|
{{ session('success') }}
|
|
</div>
|
|
@endif
|
|
|
|
<form action="{{ route('contact.store') }}" method="POST" class="space-y-4">
|
|
@csrf
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700">Judul Halaman</label>
|
|
<input type="text" name="title" value="{{ old('title', $contactInfo->title ?? '') }}" required
|
|
class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500">
|
|
</div>
|
|
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700">Deskripsi</label>
|
|
<textarea name="description" rows="3"
|
|
class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500">{{ old('description', $contactInfo->description ?? '') }}</textarea>
|
|
</div>
|
|
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700">Nama Perusahaan/Bisnis</label>
|
|
<input type="text" name="name" value="{{ old('name', $contactInfo->name ?? '') }}" required
|
|
class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500">
|
|
</div>
|
|
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700">Alamat Lengkap</label>
|
|
<textarea name="address" rows="3"
|
|
class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500">{{ old('address', $contactInfo->address ?? '') }}</textarea>
|
|
</div>
|
|
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700">Nomor Telepon</label>
|
|
<input type="tel" name="phone" value="{{ old('phone', $contactInfo->phone ?? '') }}"
|
|
class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500">
|
|
<p class="mt-1 text-sm text-gray-500">Format: +62 812-3456-7890</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700">Email</label>
|
|
<input type="email" name="email" value="{{ old('email', $contactInfo->email ?? '') }}"
|
|
class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500">
|
|
</div>
|
|
|
|
<div>
|
|
<label class="block text-sm font-medium text-gray-700">WhatsApp</label>
|
|
<input type="text" name="whatsapp" value="{{ old('whatsapp', $contactInfo->whatsapp ?? '') }}"
|
|
class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500">
|
|
<p class="mt-1 text-sm text-gray-500">Format: +62812345678 (tanpa spasi atau tanda hubung)</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label class="inline-flex items-center">
|
|
<input type="checkbox" name="is_active" value="1" {{ old('is_active', $contactInfo->is_active ?? true) ? 'checked' : '' }}
|
|
class="rounded border-gray-300 text-blue-600 shadow-sm focus:border-blue-500 focus:ring-blue-500">
|
|
<span class="ml-2 text-sm text-gray-600">Aktif</span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="pt-4">
|
|
<button type="submit" class="w-full bg-blue-600 text-white py-2 px-4 rounded-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2">
|
|
Simpan Perubahan
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
@endsection
|