@extends('layouts.app') @section('title','Add User')@section('page-title','Add User') @section('content')
@csrf
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
User will only see data from this branch@error('branch_id')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
Cancel
Role Permissions
@foreach([['Admin','#EF476F','bi-shield-fill','Full access to all branches, users, backups, and all reports.'],['Manager','#7209B7','bi-person-badge','Full operational access within their assigned branch and category.'],['Staff','#2EC4B6','bi-person','Can view products and record sales within their branch only.']] as [$role,$color,$icon,$desc])
{{ $role }}
{{ $desc }}
@endforeach
@endsection @push('scripts') @endpush