πŸš€ DevOps & SRE Certification Program πŸ“… Starting: 1st of Every Month 🀝 +91 8409492687 πŸ” Contact@DevOpsSchool.com

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

How to Update Name and Email of Users in Laravel?

How to Update Name and Email of Users in Laravel?

To know the Creation of project, User Authentication, Database Connection, Migration of tables. CLICK.

Step 1. Go to resources/views/home.blade.php file and write down the following code:-

@extends('layouts.app')
@section('content')
<div class="container">
@if ($errors->any())
<div class="alert alert-danger">
<ul>
@foreach($errors->all() as $error)
<li>
{{$error}}
</li>
@endforeach
</ul>
</div>
@endif
@if(session()->get('message'))
<div class="alert alert-success" role="alert">
<strong>Success: </strong>{{session()->get('message')}}
</div>
@endif
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<div class="card-header">{{Auth::user()->name}}'s Profile</div>
<div class="card-body">
@if (session('status'))
<div class="alert alert-success" role="alert">
{{ session('status') }}
</div>
@endif
@if($message = Session::get('success'))
<div class="alert alert-success">
<p>{{$message}}</p>
</div>
@endif
<form action="{{route('home')}}" method="POST">
@csrf
<div class="form-group">
<label for="name"><strong>Name:</strong></label>
<input type="text" class="form-control" id ="name" name="name" value="{{Auth::user()->name}}">
</div>
<div class="form-group">
<label for="email"><strong>Email:</strong></label>
<input type="text" class="form-control" id ="email" value="{{Auth::user()->email}}" name="email">
</div>
<button class="btn btn-primary" type="submit">Update Profile</button>
</form>
</div>
</div>
</div>
</div>
</div>
@endsection

Step 2. After that, Define the function of profileupdate inside the app/Http/Controllers/HomeController.php file and validate it.

public function profileUpdate(Request $request){
//validation rules
$request->validate([
'name' =>'required|min:4|string|max:255',
'email'=>'required|email|string|max:255'
]);
$user =Auth::user();
$user->name = $request['name'];
$user->email = $request['email'];
$user->save();
return back()->with('message','Profile Updated');
}

Step 3. Now, Go to routes/web.php file and define all these routes and write down the following code:

Route::post('/home','HomeController@profileUpdate')->name('profileupdate');
view raw web.php hosted with ❀ by GitHub

Login

Step 4. Now, Login with your registered email id and password.

Updation Page

Update the Name or Email

Step 5. Change Name or Email according to your needs.

Thanks

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.