@extends('layouts.admin_app') @section('title', 'Assign Super Admin') @section('content')

Assign Super Admin

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ csrf_field() }} @if(!count($users))

No user is avaliable.

@endif

Create New User and make Super Admin

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ csrf_field() }} @include ('admin.users.form', [ 'user' => null, ])
@endsection