@extends('layouts.app') @section('title', ' - User Profile') @section('content')
{{ __('application.profile.user_profile') }}
@csrf @method('PUT')
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{ __('application.profile.this_email_will_be_used_as_your_login_email') }} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('language_id')) {{ $errors->first('language_id') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{ __('application.profile.you_need_to_provide_your_current_password_to_update_profile') }} @if ($errors->has('currentPassword')) {{ $errors->first('currentPassword') }} @endif
@endsection