@extends('layouts.app') @section('content')
Groups
@if ($errors->has('edname'))
{{ $errors->first('edname') }}
@endif @if ($errors->has('eddescription'))
{{ $errors->first('eddescription') }}
@endif
Name
Description
@forelse ($groups as $group)
{{ csrf_field() }}
@empty
There aren't any groups yet.
@endforelse
Create new group
{{ csrf_field() }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@endsection