@extends('layouts.admin') {{-- Customize layout sections --}} @section('subtitle', 'Topic') @section('content_header_title', 'Home') @section('content_header_subtitle', 'Topic') {{-- Content body: main page content --}} @section('content_body')
@csrf
{{ trans('global.create') }} {{ trans('cruds.topic.title_singular') }}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.topic.fields.name_helper') }}
@if ($errors->has('category'))
{{ $errors->first('category') }}
@endif {{ trans('cruds.topic.fields.category_helper') }}
@endsection