@extends('layouts.admin.app') @section('title', 'Edit User') @section('content_header')
@stop @section('content')
@csrf @method('PUT')
Basic Info
Change Photo
Name
Email Address
User Roles
@foreach (\App\Models\Role::all() as $role)
roles->contains('id', $role->id))>{{readable($role->name)}}
@endforeach
Set Password
Password
Confirm Password
Save
Cancel
@endsection