@extends('layout.main') @section('content') @include('shared.errors')

{{__('Update User Profile')}}

@if($user->profile_photo) @else @endif

{{__('The field labels marked with * are required input fields')}}.

{{ method_field('PUT') }} @csrf
@if($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if($errors->has('username')) {{ $errors->first('username') }} @endif
@if($errors->has('email')) {{ $errors->first('email') }} @endif

{{__('Change Password')}} ({{trans('file.Optional')}})

{{__('The field labels marked with * are required input fields')}}.

@csrf
@endsection