@extends('layouts.panel') @section('content')

{{ isset($item) ? 'Edit User' : 'Add User' }}

Admin can create author, editor, and reviewer accounts.

@if($errors->any())
@endif
@csrf @if(isset($item)) @method('put') @endif
@if(isset($item) && $item->role === 'author')

Complete Author Profile

Fill these details so this author is ready for article submissions.

@csrf @method('put')
@endif @endsection