@extends('layouts.app') @section('content')
{{-- PAGE HEADER WITH BREADCRUMB --}}
{{-- Title Section --}}
Edit Keyword
{{-- Breadcrumb Path --}}
Keyword Update Form
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('code')
{{ $message }}
@enderror
Input Guidelines
  • Keyword Name: A descriptive name for the keyword (e.g., "Payment Status")
  • Keyword Code: A unique identifier code (e.g., "PAY_STATUS")
  • Codes should be uppercase and use underscores for spaces
  • Both fields are required and must be unique
Cancel
@endsection