@extends('admin.layouts.master') @section('content')
@if($message = Session::get('success'))

{{ $message }}

@endif
@csrf
{!! Form::label('name', trans('translate.profile_Email')) !!} {!! Form::text('email', $email, ['class' => 'form-control','placeholder' => 'Enter website title','readonly'=>true]) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::label('name', trans('translate.profile_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.profile_New_Password')) !!} {!! Form::input('password','password', '', ['class' => 'form-control','placeholder' => 'Enter New Password']) !!} @if ($errors->has('password')) {{ $errors->first('password') }} @endif
{!! Form::label('name', trans('translate.profile_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