@extends('admin.layouts.master') @section('content')

{{__('translate.profile_update_email')}}

@if($message = Session::get('success'))

{{ $message }}

@endif
@csrf
{!! Form::label('name', trans('translate.update_Current_Email')) !!} {!! Form::text('email', $email, ['class' => 'form-control','placeholder' => 'Enter Email','readonly'=>true]) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::label('name', trans('translate.update_New_Email')) !!} {!! Form::text('new_email', '', ['class' => 'form-control','placeholder' => 'Enter new email']) !!} @if ($errors->has('new_email')) {{ $errors->first('new_email') }} @endif
{!! Form::label('name', trans('translate.update_Current_Password')) !!} {!! Form::input('password','current_password', '', ['class' => 'form-control','placeholder' => 'Enter Current Password *']) !!} @if ($errors->has('current_password')) {{ $errors->first('current_password') }} @endif
{!! Form::label('name', trans('translate.update_Confirm_Password')) !!} {!! Form::input('password','password_confirmation', '', ['class' => 'form-control','placeholder' => 'Enter Confirm Password']) !!} @if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@endsection @section('after-scripts') @endsection