@extends('app.layout') @section('sub_content')
@csrf
{{ __('Name') }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{ __('Display Name') }}
@if ($errors->has('display_name')) {{ $errors->first('display_name') }} @endif
{{ __('Group Name') }}
@if ($errors->has('group_name')) {{ $errors->first('group_name') }} @endif
{{ __('Cancel') }}
@endsection