@extends('layouts.admin_app') @section('title', 'Add New Manager') @section('content')

Assign Manager

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

Users already assigned as manager to this location are not shown here.

Create New User and make Manager

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