@extends('admin.layouts.app', ['activePage' => 'edit-member', 'titlePage' => __('Edit Member')]) @section('content')
@csrf @method('put')

{{ __('Edit Member') }}

{{ __('Member information') }}

@if (session('status'))
{{ session('status') }}
@endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('alternate_email')) {{ $errors->first('alternate_email') }} @endif
@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@if ($errors->has('telephone')) {{ $errors->first('telephone') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif If you want to change password then Enter Password
@if ($errors->has('alternate_emails')) {{ $errors->first('alternate_emails') }} @endif
@if ($errors->has('alternate_contacts')) {{ $errors->first('alternate_contacts') }} @endif
@endsection