@extends('layouts.app', ['title' => trans('account.edit')]) @section('content')

{{ __('account.edit') }}

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

@csrf @method('put')
{{ __('account.password.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('layouts.footers.auth') @endsection