@php
$isEdit = filled($tenant->id);
$platformFileUrl = static function (?string $path): ?string {
if (blank($path)) {
return null;
}
return url('platform/files/' . ltrim($path, '/'));
};
@endphp
@if ($isEdit)
@else
@endif
{{ old('description', $tenant->description) }}
프로필 이미지
webp로 저장되며 800x800 정사각형으로 맞춥니다.
@if ($imageUrl = $platformFileUrl($tenant->profile_image_path))
@else
아직 업로드되지 않았습니다.
@endif
이미지 업로드
JPG, PNG, WEBP를 업로드하면 저장 시 webp 800x800으로 변환합니다.
@foreach ($statusOptions as $value => $label)
@endforeach
@foreach ($planOptions as $value => $label)
@endforeach
현재 플랜보다 높은 플랜을 선택하면 즉시 적용되고, 낮은 플랜은 다음 기간부터 적용됩니다.
{{ old('domains', implode("\n", $domainLines ?? [])) }}
한 줄에 하나씩 입력하세요. http://나 경로가 붙어 있어도 host만 저장됩니다. 비워두면 도메인 미설정 상태로 저장됩니다.