@extends('layouts.nifty') @section('content') User Management List of Users Edit User Edit User Complete the form below to Edit User. @csrf @method('PUT') Edit User Information Employee No Employee Name Email Address Password Confirm Password User Photo Branch {{ $branchname->branch ?? 'Select Branch' }} @foreach($branches as $branches) {{ $branches->branch }} @endforeach Roles @foreach($roles as $id => $roles) roles()->pluck('name', 'id')->contains($id)) ? 'selected' : '' }}>{{ $roles }} @endforeach Back to List Update User @include('partials.footer') @endsection
Complete the form below to Edit User.