@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']) !!} {{__('db.UserName')}} * @if($errors->has('name')) {{ $errors->first('name') }} @endif {{__('db.Email')}} * @if($errors->has('email')) {{ $errors->first('email') }} @endif {{__('db.Phone Number')}} * {{__('db.Company Name')}} {!! Form::close() !!} {{__('db.Change Password')}} {!! Form::open(['route' => ['user.password', Auth::id()], 'method' => 'put']) !!} {{__('db.Current Password')}} * {{__('db.New Password')}} * {{__('db.Confirm Password')}} * {!! Form::close() !!} @endsection @push('scripts') @endpush
{{__('db.The field labels marked with * are required input fields')}}.