@extends('layouts.admin.app') @section('title','New blog category') @section('content')
@csrf

New category

{{ __('Back') }}
@if($errors->any())
    @foreach($errors->all() as $err)
  • {{ $err }}
  • @endforeach
@endif @if(Session::has('message'))
{{ Session::get('message') }}
@endif
{{--
--}} {{--
--}} {{-- --}} {{-- --}} {{--
--}} {{--
--}}

@endsection @section('js') @endsection