@extends('layouts.admin.app') @section('content') Edit Pengguna Kembali @csrf @method('PUT') Nama Pengguna * @if ($errors->has('name')) {{ $errors->first('name') }} @endif Email * @if ($errors->has('email')) {{ $errors->first('email') }} @endif No HP * @if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif Tanggal Lahir * @if ($errors->has('date_of_birth')) {{ $errors->first('date_of_birth') }} @endif Profesi * @if ($errors->has('profession')) {{ $errors->first('profession') }} @endif Bidang Usaha * @if ($errors->has('cultivation_business')) {{ $errors->first('cultivation_business') }} @endif Alamat * {{ old('address', $user->address) }} @if ($errors->has('address')) {{ $errors->first('address') }} @endif Hak Akses * Pilih @foreach ($roles as $role) id : null) == $role->id ? 'selected' : '' }}> {{ $role->name }} @endforeach Password @if ($errors->has('password')) {{ $errors->first('password') }} @endif Ulangi Password @if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif Simpan @endsection @section('js') @endsection