@extends('adminlte::page') @section('title', config('adminlte.title') . ' | Edit Profile') @section('content_header')

Edit Profile

@stop @section('content')
@if ($errors->any())
Validation Errors
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT') {{-- Navigation --}}
Back

{{-- Main Content Card --}}

{{ $myuser->employee_ref }} - {{ $myuser->name }}

Last updated: {{ date('l, j F Y H:i', strtotime($myuser->updated_at)) }} UTC
{{-- Personal Information & Contact Details --}}

Basic Information

Contact Details

Your work email cannot be changed here
Optional - for personal communications
{{-- Address --}}

Address

Enter your postcode to automatically find your address
@foreach ($countryNames as $countryName)
{{-- Diversity Information --}}

Diversity

@foreach ($nationallyNames as $nationallyName)

Religion & Orientation

@stop @section('footer')   @stop