@extends('layouts.app') @section('content')
Categories
@if ($errors->has('edname'))
{{ $errors->first('edname') }}
@endif
Category
@forelse ($categories as $category)
{{ csrf_field() }}
@if ($category->id!=1) @endif
@empty
There aren't any categories yet.
@endforelse
Create new category
{{ csrf_field() }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@endsection @section('scripts') @parent @endsection