This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//in web.php: | |
Route::post('/profile/edit/save', 'AccountUserController@saveProfile')->name('save_profile'); | |
// html code | |
<form class="profile-data" enctype="multipart/form-data" method="POST" action="{{ route('save_profile') }}"> | |
{{ csrf_field() }} | |
<input type="hidden" name="id_user" value="{{ $user->id}}"> | |
<div class="row r-avatar"> | |
<div class="col-md-4" style="border:0px solid"> | |
<img src="{{ URL::asset('frontend/img/avatars/')}}/{{ $user->user_avatar}}" alt="Avatar" style="width:100px;height:100px;max-width: none;" class="img-thumbnail img-circle"> |
NewerOlder