-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added note about activating user on edit forms + added option to manu…
…ally confirm email
- Loading branch information
1 parent
25cae78
commit e967585
Showing
3 changed files
with
26 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
@extends('layouts.admin') | ||
|
||
@section('content') | ||
{!! form($form) !!} | ||
@if (Auth::User()->hasRole("admin")) | ||
<p> | ||
<b>Note: </b> After creating a new user they will need to be activated from the | ||
<a href="{{route('admin.user.pending')}}">pending registrations</a> screen. | ||
</p> | ||
@endif | ||
{!! form($form) !!} | ||
@endsection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
@extends('layouts.admin') | ||
|
||
@section('content') | ||
@if (Auth::User()->hasRole("admin")) | ||
<p> | ||
<b>Note: </b> When creating a new user they will need to be activated from the | ||
<a href="{{route('admin.user.pending')}}">pending registrations</a> screen. | ||
</p> | ||
@endif | ||
{!! form($form) !!} | ||
@include('partials.admin.file', ['file'=> $object->picture]) | ||
@endsection |