@extends('layouts.master') @section('title') Edit User - {{ $user->name }} @endsection @section('content')
@csrf @method('PUT')

Edit User - {{ $user->name }} ({{ $outlet->outlet_name }})

{{-- User Information --}}
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
{{-- User Role --}}
@error('user_role')
{{ $message }}
@enderror
{{-- Password Section --}}
Leave password fields blank if you don't want to change the password.
@error('password')
{{ $message }}
@enderror
Minimum 8 characters
@error('password_confirmation')
{{ $message }}
@enderror
{{-- Status --}}
@error('status')
{{ $message }}
@enderror
{{-- User Info --}}
User Information
Created:

{{ $user->created_at->format('M d, Y H:i') }}

Last Updated:

{{ $user->updated_at->format('M d, Y H:i') }}

Outlet:

{{ $outlet->outlet_name }}

@endsection @section('scripts') @endsection