@extends('layouts.app', ['activePage' => 'profile', 'titlePage' => __('User Profile')]) @section('content')
@csrf @method('put')

{{ __('Edit Profile') }}

{{ __('User information') }}

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

{{ __('Change password') }}

{{ __('Password') }}

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