@extends('layouts.app') @push('css') @endpush @section('content')

{{ $title }}

@if (session('success'))
{{ session('success') }}
@endif @if (count($errors) > 0)
Whoops! Ada beberapa masalah dengan data yang anda masukkan.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Data Umum

Untuk mengubah detail data, edit dan simpan dari sini

@csrf @method('PUT')
Data Display

Untuk mengubah detail data, edit dan simpan dari sini

@if ($profil->logo && file_exists(public_path('upload/profil/' . $profil->logo))) @endif
@if ($profil->logo_dark && file_exists(public_path('upload/profil/' . $profil->logo_dark))) @endif
@if ($profil->favicon && file_exists(public_path('upload/profil/' . $profil->favicon))) @endif
@if ($profil->banner && file_exists(public_path('upload/profil/' . $profil->banner))) @endif
@if ($profil->bg_login && file_exists(public_path('upload/profil/' . $profil->bg_login))) @endif
@endsection @push('scripts') @endpush