@extends('layouts.admin') @section('title') Admin | Add UserGroup @endsection @section('content')

UserGroup / Create

@csrf @if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{-- Hidden Guard Name --}}
Cancel
@endsection