@extends('layouts/app') @section('content')

Add role

@if(Session::has('error'))
Errors!
@foreach(Session::get('error') as $err) {{ $err }}
@endforeach @php Session::forget('error'); @endphp
@endif
@csrf
* {{-- --}} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
* {{-- --}} @if ($errors->has('permission_group')) {{ $errors->first('permission_group') }} @endif
@endsection @section('js') @stop