@extends('layouts.app') @section('title', __('Edit Profile')) @section('style') @endsection @section('wrapper')
{{ __('Edit Profile Information') }}
@csrf @method('POST')
{{ __('Profile Picture') }}
User Avatar
@error('user_avatar')
{{ $message }}
@enderror {{ __('Max file size: 2MB. Allowed: JPG, PNG, GIF') }}
{{ __('Username') }}
@error('username')
{{ $message }}
@enderror
{{ __('Email') }}
@error('email')
{{ $message }}
@enderror
{{ __('Phone') }}
@error('phone')
{{ $message }}
@enderror
{{ __('Country') }}
@error('country_id')
{{ $message }}
@enderror
{{ __('City') }}
@error('city_id')
{{ $message }}
@enderror
{{ __('Cancel') }}
@endsection @section('script') @endsection