@extends('layouts.admin') @section('title', 'Edit Anggota Tim') @section('content')

Edit Anggota Tim

Edit profil {{ $team->name }}

@csrf @method('PUT')

Informasi Dasar

Data pribadi anggota tim

@error('name')

{{ $message }}

@enderror
@error('position')

{{ $message }}

@enderror
@error('bio')

{{ $message }}

@enderror
@if($team->photo)
{{ $team->name }}

Foto saat ini

@endif

Format: JPG, PNG, WEBP. Maksimal 2MB. Kosongkan jika tidak ingin mengubah.

@error('photo')

{{ $message }}

@enderror

Informasi Kontak

Email, telepon, dan media sosial

@error('email')

{{ $message }}

@enderror
@error('phone')

{{ $message }}

@enderror
@error('linkedin')

{{ $message }}

@enderror
@error('twitter')

{{ $message }}

@enderror
@error('instagram')

{{ $message }}

@enderror
@error('facebook')

{{ $message }}

@enderror
Batal

Pengaturan

Angka lebih kecil akan tampil terlebih dahulu

@error('sort_order')

{{ $message }}

@enderror

Informasi

Dibuat: {{ $team->created_at->format('d M Y H:i') }}
Diupdate: {{ $team->updated_at->format('d M Y H:i') }}

Preview

{{ $team->name }}

{{ $team->position }}

{{ $team->email }}
{{ $team->phone }}
@if($team->social_links && isset($team->social_links['linkedin']) && $team->social_links['linkedin']) @endif @if($team->social_links && isset($team->social_links['twitter']) && $team->social_links['twitter']) @endif @if($team->social_links && isset($team->social_links['instagram']) && $team->social_links['instagram']) @endif @if($team->social_links && isset($team->social_links['facebook']) && $team->social_links['facebook']) @endif
{{ $team->bio }}
@push('scripts') @endpush @endsection