@extends('backend.layout.main') @section('content')

{{__('db.Update User Profile')}}

{{__('db.The field labels marked with * are required input fields')}}.

{!! Form::open(['route' => ['user.profileUpdate', Auth::id()], 'method' => 'put']) !!}
@if($errors->has('name')) {{ $errors->first('name') }} @endif
@if($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::close() !!}

{{__('db.Change Password')}}

{!! Form::open(['route' => ['user.password', Auth::id()], 'method' => 'put']) !!}
{!! Form::close() !!}
@endsection @push('scripts') @endpush