{{-- resources/views/anggota/form.blade.php --}} @extends('layout.index') @section('title', $anggota->id ? 'Edit Anggota - SIAPN' : 'Tambah Anggota - SIAPN') @push('styles') {{-- ============================================================ PREMIUM GREEN DESIGN SYSTEM — UNIFIED WITH USER FORM (Identik dengan halaman user/form.blade.php) ============================================================ --}} @endpush @section('content')
@php // === Ambil pac_id dari query string === $pacId = request()->query('pac_id'); // === Buat URL kembali ke PAC jika ada, atau ke daftar anggota === if ($pacId) { $backUrl = route('anggota.pac', ['id' => $pacId]); } else { $backUrl = route('anggota.index'); } // === Jika sedang edit, coba ambil pac_id dari anggota (untuk fallback) === if (!$pacId && $anggota->id && $anggota->id_pac) { $pacId = $anggota->id_pac; $backUrl = route('anggota.pac', ['id' => $pacId]); } $isEdit = $anggota->id ? true : false; $pageTitle = $isEdit ? 'Sunting Data Anggota' : 'Tambah Anggota Baru'; $pageIcon = $isEdit ? 'bi-pencil-square' : 'bi-person-plus'; $badgeClass = $isEdit ? 'badge-modern-warning' : 'badge-modern-success'; $badgeIcon = $isEdit ? 'bi-pencil' : 'bi-plus-circle'; $badgeText = $isEdit ? 'Mode Edit' : 'Baru'; $submitText = $isEdit ? 'Simpan Perubahan' : 'Simpan Data'; $submitIcon = $isEdit ? 'bi-save' : 'bi-save'; @endphp
@csrf @if($isEdit) @method('PUT') @endif
Informasi Pribadi
@error('nama')
{{ $message }}
@enderror
@error('tempat_lahir')
{{ $message }}
@enderror
@error('tgl_lahir')
{{ $message }}
@enderror
@error('alamat')
{{ $message }}
@enderror
Keanggotaan & Kepengurusan
@if($user->role === 'super_admin') @error('id_pac')
{{ $message }}
@enderror @else @endif
@error('id_pengesahan')
{{ $message }}
@enderror
@if($isEdit && $user->role === 'super_admin')
@error('status')
{{ $message }}
@enderror
@endif
Dokumen Pendukung
Klik atau seret foto ke sini
Rasio 3:4 (berdiri) • PNG, JPG, JPEG • Maks 2MB
Preview Foto
{{ $isEdit && $anggota->id_gambar ? 'Foto anggota' : 'Belum ada foto' }}
Gunakan rasio 3x4 (berdiri) untuk hasil terbaik.
@error('file_foto')
{{ $message }}
@enderror
@push('scripts') @endpush @endsection