LinkStack/resources/views/studio/profile.blade.php
Julian Prieber 518d82125e Change email option is now hidden if email auth is enabled
Added if statement that hides the option for users to change their email if email registration authentication is enabled (which it is by default).
2022-03-31 21:33:58 +02:00

45 lines
1.6 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>
@if(env('REGISTER_AUTH') != 'verified')
<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>
@endif
<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