@extends('admin.layouts.app') @section('title', $category->exists ? 'Edit Kategori' : 'Tambah Kategori') @section('content')

{{ $category->exists ? 'Edit Kategori' : 'Tambah Kategori' }}

@csrf @if($category->exists) @method('PUT') @endif
@error('name')
{{ $message }}
@enderror
@error('slug')
{{ $message }}
@enderror
@error('image')
{{ $message }}
@enderror @if($category->exists && $category->image)
@endif
@error('order')
{{ $message }}
@enderror
Batal
@endsection