{{-- Extends layout --}} @extends('admin.layouts.app') {{-- Content --}} @section('content')

Güncelle {{ $forum->title }}

@csrf @method('PATCH')
@component('admin.components.input', [ 'label' => __('Başlık'), 'name' => 'title', 'value' => old('title')??$forum->title, 'placeholder' => __('Lütfen başlık giriniz'), ]) @endcomponent @component('admin.components.textarea', [ 'label' => __('Açıklama'), 'name' => 'description', 'value' => old('description')??$forum->description, 'placeholder' => __('Lütfen açıklama giriniz'), 'class' => 'editor', ]) @endcomponent
@endsection