@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.contentTag.title_singular') }}
@method('POST') @csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.contentTag.fields.name_helper') }}
@if($errors->has('slug'))
{{ $errors->first('slug') }}
@endif {{ trans('cruds.contentTag.fields.slug_helper') }}
@endsection