@extends('backEnd.master') @section('title') @lang('auth.change_password') @endsection @section('mainContent')

@lang('auth.change_password')

@if (Illuminate\Support\Facades\Config::get('app.app_sync')) {{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'admin-dashboard', 'method' => 'GET', 'enctype' => 'multipart/form-data']) }} @else {{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'updatePassowrdStore', 'method' => 'POST', 'enctype' => 'multipart/form-data']) }} @endif

{{ @$LoginUser->full_name }}

{{ @$LoginUser->email }}

@if ($errors->has('current_password')) {{ $errors->first('current_password') }} @endif @if (session()->has('password-error')) {{ session()->get('password-error') }} @endif
@if ($errors->has('new_password')) {{ $errors->first('new_password') }} @endif
@if ($errors->has('confirm_password')) {{ $errors->first('confirm_password') }} @endif
@if (Illuminate\Support\Facades\Config::get('app.app_sync')) @else @endif
{{ Form::close() }}
@endsection