@extends('layouts.admin') @section('content')

{{ $title ?? '' }}

@foreach ($model->getAttributes() as $key => $value) @if (str_contains($key, 'deleted_at') || str_contains($key, 'password')) @else @endif @endforeach
{{ __('label.' . $key) }} @if (str_contains($key, 'image') || str_contains($key, 'picture') || str_contains($key, 'logo')) @else {{ $value }} @endif
@endsection