@extends('layouts.panel')
@section('content')
{{ isset($item) ? 'Edit User' : 'Add User' }}
Admin can create author, editor, and reviewer accounts.
@if($errors->any())
@foreach($errors->all() as $error)- {{ $error }}
@endforeach
@endif
@if(isset($item) && $item->role === 'author')
Complete Author Profile
Fill these details so this author is ready for article submissions.
@endif
@endsection