@extends('dashboard.layouts.app') @section('title', __('dashboard.Add New Track Category')) @section('page_heading', __('dashboard.Add New Track Category')) @section('breadcrumb') @endsection @section('content')

{{ __('dashboard.Add New Track Category') }}

@csrf
@error('parent_id')
{{ $message }}
@enderror
@foreach(config('app.supported_locales') as $locale)
@error('name.' . $locale)
{{ $message }}
@enderror
@endforeach
@error('status')
{{ $message }}
@enderror
@endsection