@extends('layouts.website') @section('title', 'Profil Sekolah') @section('content') {{-- CSS MODERN (SOLID COLOR STYLE) --}} {{-- KONTEN UTAMA --}}
{{-- JUDUL --}}

Profil {{ $school->nama_sekolah ?? 'Sekolah' }}

{{-- ROW 1: SAMBUTAN KEPALA SEKOLAH --}}
{{-- FOTO (KIRI) --}}
@if(isset($sambutan) && $sambutan->foto) Foto Kepala Sekolah @else Foto Kepala Sekolah @endif
{{-- TEKS (KANAN) --}}

Sambutan Kepala Sekolah

{{-- Isi Sambutan --}}
{!! nl2br(e(strip_tags($sambutan->ucapan_sambutan ?? 'Sambutan belum diisi.'))) !!}
{{-- Footer Nama --}}
{{ $sambutan->kepala_sekolah ?? 'Nama Kepala Sekolah' }}

Kepala Sekolah

{{-- ROW 2: TENTANG SEKOLAH --}}
{{-- Ubah warna border atas jadi kuning --}}

Tentang Sekolah Kami

{!! nl2br(e(strip_tags($school->tentang ?? 'Deskripsi sekolah belum diisi.'))) !!}
@endsection