@extends('layouts.app') @section('title', ' - Add Category') @section('content')
{{ __('application.category.add_category') }} {{ __('application.category.category_list') }}
@csrf
@if ($errors->has('place_id')) {{ $errors->first('place_id') }} @endif
@if ($errors->has('type')) {{ $errors->first('type') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@endsection