@extends('admin.layouts.app') @section('title') New Category @endsection @section('css') @endsection @section('contents')
New Category
Back
@if(!$errors->isEmpty())
@foreach($errors->all() as $err)
{{ $err }}
@endforeach
@endif @if(Session::has('message'))
{{ Session::get('message') }}
@endif
@csrf
Name
Description
{{ old('description') }}
Url Key
Submit
@endsection @section('js') @endsection