@extends('dashboard.layout') @section('title', 'Edit Keyword') @section('meta_description', 'Edit an existing scraping keyword.') @section('page_title', 'Keywords') @section('content')
Keywords Edit: {{ $keyword->keyword }}

Edit Keyword

Update the keyword details below.

@csrf @method('PUT')
@error('keyword')

{{ $message }}

@enderror
@error('parent_id')

{{ $message }}

@enderror

Only top-level keywords are available as parents. This keyword itself is excluded.

Cancel
{{-- Danger zone --}}

Danger Zone

Deleting this keyword will detach any child keywords (they become top-level).

@csrf @method('DELETE')
@endsection