{{-- resources/views/public/profil/page.blade.php --}} @extends('layouts.app') @section('title', 'Profil Sekolah - ' . ($setting->web_name ?? 'SMP Al Idrus')) @section('content')

Profil Sekolah

Mengenal lebih dekat sejarah, visi misi, serta identitas lengkap sekolah kami.

@if(isset($sejarah) && $sejarah->img)
Gambar Sejarah Sekolah
@endif @if(isset($peta) && $peta->image)
Gambar Peta Sekolah
@endif @if((!isset($sejarah) || !$sejarah->img) && (!isset($peta) || !$peta->image))
Default Image
@endif

Sejarah Sekolah

@if(isset($sejarah) && $sejarah->description) {!! $sejarah->description !!} @else

Data sejarah sekolah belum ditambahkan.

@endif

Visi & Misi

Visi

{!! $vimi->visi ?? 'Visi belum diatur.' !!}

Misi

{!! $vimi->misi ?? 'Misi belum diatur.' !!}

@if(isset($kepsek))

Sambutan Kepala Sekolah

{!! strip_tags($kepsek->desc) !!}

@if($kepsek->img) {{ $kepsek->name }} @endif

{{ $kepsek->name }}

Kepala Sekolah

@if($kepsek->nip) NIP: {{ $kepsek->nip }} @endif
@endif

Identitas Sekolah

  • Nama Sekolah
    {{ $identitas->nama_sekolah ?? '-' }}
  • NSS
    {{ $identitas->nss ?? '-' }}
  • Akreditasi
    {{ $identitas->akreditasi ?? '-' }}
  • Status
    {{ $identitas->status ?? '-' }}
  • Luas Area
    {{ $identitas->luas_area ?? '-' }}
  • SK Pendirian
    {{ $identitas->nokep ?? '-' }}
  • Alamat
    {{ $identitas->alamat ?? '-' }}
@if(isset($peta) && $peta->title)

{{ $peta->title }}

{!! $peta->desc !!}
@if($setting->web_maps)
{!! $setting->web_maps !!}
@endif
@endif
@endsection