@extends( ($theme =="white") ? 'layouts.white_theme': ( ($theme =="red") ? 'layouts.red_theme': (($theme =="green") ? 'layouts.green_theme': (($theme =="black") ? 'layouts.black_theme': ( ($theme =="blue") ?'layouts.blue_theme': 'layouts.yellow_theme' )))) ) @section('content')

{{ __('Edit KB Category') }}

@include('common.demo') @include('common.errors')
@csrf
@error('name')
{{ $message }}
@enderror
@error('icon')
{{ $message }}
@enderror {{ __('You have to add HTML code of fontawesome icons here') }}.
{{ __('Reference: ') }} {{ __('fontawesome.com') }}
@foreach ( $kb_category_translation as $kb_cat_trans )
@error('custom[{{ $kb_cat_trans->language->id }}]')
{{ $message }}
@enderror
@error('custom[{{ $kb_cat_trans->language->id }}]')
{{ $message }}
@enderror
@endforeach @if (env('APP_ENV') != 'demo')
@endif
@endsection