@extends('layout.master') @section('css') @stop @section('content')
@csrf

Add Category

@if ($errors->has('category_name'))
{{ $errors->first('category_name') }}
@endif
@if ($errors->has('event_type'))
{{ $errors->first('event_type') }}
@endif
@if ($errors->has('parent_category_id'))
{{ $errors->first('parent_category_id') }}
@endif
@stop @section('script') @stop