@extends('admin.layouts.app', ['title' => __('admin.profile')]) @section('content')

{{ __('admin.profile') }}

{{ __('admin.profile_subtitle') }}
{{ __('admin.back') }}
@if (session('status'))
{{ session('status') }}
@endif
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror

{{ __('admin.change_password') }}
{{ __('admin.change_password_hint') }}
@error('password')
{{ $message }}
@enderror
@endsection