@extends('layouts.account') @section('content')
@if (session('status') === 'profile-information-updated')
{{ __('Your profile has been updated') }}
@endif
@method('PUT') @csrf
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror @if (!empty( auth() ->user() ->hasVerifiedEmail() ))

{{ __('E-mail address verified on :email_verified_at', [ 'email_verified_at' => auth()->user()->email_verified_at->isoFormat('LLLL'), ]) }}

@else

{{ __('Awaiting e-mail address confirmation') }}

@endif
@error('lang')
{{ $message }}
@enderror
@error('theme')
{{ $message }}
@enderror
@if (!auth() ->user() ->hasVerifiedEmail()) {{ __('Send email verification link') }} @endif
@endsection