@extends('user::_layouts.authenticated.layout') @section('title', __('messages.global.edit_member')) @section('content')
{{ __('messages.global.edit_member') }}
{{ csrf_field() }} {{-- Role Field --}}
@if ($errors->has('role')) {{ $errors->first('role') }} @endif
{{-- Fields --}}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
{{-- Block password change Field --}}
password_is_editable)) checked @endif>
@if ($errors->has('block_password_change')) {{ $errors->first('block_password_change') }} @endif
@endsection