LinkStack/resources/views/studio/profile.blade.php
Julian Prieber 56643ed068 Fixed bug 'profile changes not applying'
Fixed a bug where users were unable to change name, email or password unless every value was changed at once.
2022-03-31 21:31:00 +02:00

43 lines
1.5 KiB
PHP
Executable File

@extends('layouts.sidebar')
@section('content')
<h2 class="mb-4"><i class="bi bi-person"> Profile</i></h2>
@foreach($profile as $profile)
<form action="{{ route('editProfile') }}" method="post">
@csrf
<div class="form-group col-lg-8">
<h3>Name</h3>
<input type="text" class="form-control" name="name" value="{{ $profile->name }}">
</div>
<button type="Change " class="mt-3 ml-3 btn btn-info">Change name</button>
</form>
<br><br><form action="{{ route('editProfile') }}" method="post">
@csrf
<div class="form-group col-lg-8">
<h3>Email</h3>
<input type="email" class="form-control" name="email" value="{{ $profile->email }}">
</div>
<button type="Change " class="mt-3 ml-3 btn btn-info">Change email</button>
</form>
<br><br><form action="{{ route('editProfile') }}" method="post">
@csrf
<div class="form-group col-lg-8">
<h3>Password</h3>
<input type="password" name="password" class="form-control" placeholder="if empty, password will blank">
</div>
<button type="Change " class="mt-3 ml-3 btn btn-info">Change password</button>
</form>
@csrf
<br><br><div class="form-group col-lg-8">
<h3>Role</h3>
<input type="text" class="form-control" value="{{ strtoupper($profile->role) }}" readonly>
</div>
@endforeach
@endsection