@extends('layouts.app', ['title' => __tr('User Profile')]) @section('content') @include('users.partials.header', [ 'title' => __tr('Your Profile') . ' '. auth()->user()->name, 'description' => '', 'class' => 'col-lg-7' ])

{{ __tr('Edit Profile') }}

{{ __tr('User information') }}


{{ __tr('Password') }}


@if (session('password_status')) @endif
@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection