@extends('layouts.master') @section('title') {{isset($category) ? 'Edit category': 'Add category'}} @endsection @section('css') @endsection @section('page-header') @endsection @section('content')
@csrf
@if ($errors->has('name'))

{{$errors->first('name')}}

@endif
@if ($errors->has('parent_id'))

{{$errors->first('parent_id')}}

@endif
Image Upload
@if (isset($category))
{{$category->title}}
@endif
@if ($errors->has('image'))

{{$errors->first('image')}}

@endif
@endsection @section('js') @endsection