@extends('layouts.app') @section('title', 'Edit User') @section('content')
Edit User: {{ $user->name }}
Update Profile, Status, Roles & Branch Permissions
Back to Users
@csrf @method('PUT')
is_super_admin) ? 'checked' : '' }}>

@foreach($roles as $role)
id, $userRoleIds) ? 'checked' : '' }}>
@endforeach
@foreach($branches as $branch)
id, $userBranchIds) ? 'checked' : '' }}>
@endforeach
Cancel
@endsection