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

{{ __('Edit Profile') }}

@csrf @method('put')
{{ __('User information') }}
@if (session('status')) @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif

@csrf @method('put')
{{ __('Password') }}
@if (session('password_status')) @endif
@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@include('admin.layouts.footers.auth')
@endsection