@extends('layouts.app') @section('title', ' - Edit Category') @section('content')
{{ __('application.category.edit_category') }} {{ __('application.category.category_list') }}
@csrf @method('PUT')
@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