68 lines
2.6 KiB
PHP
68 lines
2.6 KiB
PHP
<section>
|
|
<header>
|
|
<h2 class="h5 fw-bold">
|
|
{{ __('Profile Information') }}
|
|
</h2>
|
|
|
|
<p class="mt-1 text-muted small">
|
|
{{ __("Update your account's profile information and email address.") }}
|
|
</p>
|
|
</header>
|
|
|
|
<form id="send-verification" method="post" action="{{ route('verification.send') }}">
|
|
@csrf
|
|
</form>
|
|
|
|
<form method="post" action="{{ route('profile.update') }}" class="mt-4">
|
|
@csrf
|
|
@method('patch')
|
|
|
|
{{-- Name --}}
|
|
<div class="mb-3">
|
|
<label for="name" class="form-label">{{ __('Name') }}</label>
|
|
<input id="name" name="name" type="text" class="form-control @error('name') is-invalid @enderror"
|
|
value="{{ old('name', $user->name) }}" required autofocus autocomplete="name">
|
|
@error('name')
|
|
<div class="invalid-feedback">{{ $message }}</div>
|
|
@enderror
|
|
</div>
|
|
|
|
{{-- Email --}}
|
|
<div class="mb-3">
|
|
<label for="email" class="form-label">{{ __('Email') }}</label>
|
|
<input id="email" name="email" type="email"
|
|
class="form-control @error('email') is-invalid @enderror" value="{{ old('email', $user->email) }}"
|
|
required autocomplete="username">
|
|
@error('email')
|
|
<div class="invalid-feedback">{{ $message }}</div>
|
|
@enderror
|
|
|
|
@if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && !$user->hasVerifiedEmail())
|
|
<div class="mt-2">
|
|
<p class="small text-muted">
|
|
{{ __('Your email address is unverified.') }}
|
|
|
|
<button form="send-verification" class="btn btn-link text-decoration-underline p-0 small">
|
|
{{ __('Click here to re-send the verification email.') }}
|
|
</button>
|
|
</p>
|
|
|
|
@if (session('status') === 'verification-link-sent')
|
|
<p class="mt-2 fw-medium small text-success">
|
|
{{ __('A new verification link has been sent to your email address.') }}
|
|
</p>
|
|
@endif
|
|
</div>
|
|
@endif
|
|
</div>
|
|
|
|
<div class="d-flex align-items-center gap-3">
|
|
<button type="submit" class="btn btn-primary">{{ __('Save') }}</button>
|
|
|
|
@if (session('status') === 'profile-updated')
|
|
<span class="text-success fw-bold">{{ __('Saved.') }}</span>
|
|
@endif
|
|
</div>
|
|
</form>
|
|
</section>
|