@extends('layouts.app') @section('title', 'Create User - Cash Book') @section('content')

Create User

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if($branches->contains(function($branch) { return \App\Models\User::getBranchUserCount($branch->id) >= config('app.max_users_per_branch', 2); }))

Branches marked as "Full" cannot accept more users.

@endif
Cancel
@endsection