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

Pengaturan Umum

Kelola informasi umum, branding, dan pengaturan email untuk perusahaan kontraktor Anda.

{{-- Pesan Sukses (Update Pengaturan) --}} @if (session('success')) @endif {{-- [TAMBAHAN BARU] Pesan Sukses (Email Tes) --}} @if (session('test_success')) @endif {{-- [TAMBAHAN BARU] Pesan Gagal (Email Tes) --}} @if (session('test_error')) @endif {{-- Pesan Error Validasi Umum (dari Simpan Pengaturan) --}} @if ($errors->any() && !$errors->has('test_email')) @endif
@csrf {{-- PENGATURAN UMUM --}}
{{-- Kolom Kiri: Input Form --}}
{{-- Kolom Kanan: Logo Upload --}}
{{-- [BAGIAN DIUBAH] --}} {{-- Logika diubah untuk menambahkan ID dan memastikan preview berfungsi --}} @if(isset($settings['company_logo']) && $settings['company_logo']) {{-- Tampilkan logo yang ada --}} Logo saat ini {{-- Placeholder SVG (disembunyikan) --}} @else {{-- Tampilkan image tag kosong (disembunyikan) untuk diisi preview --}} {{-- Tampilkan placeholder SVG --}} @endif {{-- [AKHIR BAGIAN DIUBAH] --}}

PNG, JPG, JPEG hingga 1MB

{{-- Pemisah --}}

Pengaturan Email (SMTP)

Konfigurasi server email untuk mengirim notifikasi.

{{-- PENGATURAN SMTP BARU --}}
{{-- Tombol Aksi (Form Utama) --}}
{{-- [BAGIAN DIPISAH] FORMULIR UNTUK TES EMAIL --}} {{-- Formulir ini dipisah dari form utama --}}

Tes Pengiriman Email

Kirim email percobaan untuk memverifikasi pengaturan SMTP Anda. Pastikan Anda telah **menyimpan pengaturan** di atas sebelum melakukan tes.

@csrf
{{-- [TAMBAHAN BARU] Pesan Validasi (Email Tes) --}} @error('test_email')

{{ $message }}

@enderror
{{-- [AKHIR BAGIAN DIPISAH] --}}
{{-- [SCRIPT BARU UNTUK PREVIEW LOGO] --}} {{-- [AKHIR SCRIPT BARU] --}} @endsection