LinkStack/resources/views/studio/profile.blade.php

45 lines
1.6 KiB
PHP
Raw Normal View History

2021-04-16 01:00:00 +02:00
@extends('layouts.sidebar')
@section('content')
<h2 class="mb-4"><i class="bi bi-person"> Profile</i></h2>
@foreach($profile as $profile)
2021-04-16 01:00:00 +02:00
<form action="{{ route('editProfile') }}" method="post">
@csrf
<div class="form-group col-lg-8">
<h3>Name</h3>
2021-04-16 01:00:00 +02:00
<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
2021-04-16 01:00:00 +02:00
<div class="form-group col-lg-8">
<h3>Email</h3>
2021-04-16 01:00:00 +02:00
<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
2021-04-16 01:00:00 +02:00
<div class="form-group col-lg-8">
<h3>Password</h3>
2022-04-27 13:16:17 +02:00
<input type="password" name="password" class="form-control" placeholder="If empty, no changes will be made">
2021-07-06 10:53:28 +02:00
</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>
2021-07-06 10:53:28 +02:00
<input type="text" class="form-control" value="{{ strtoupper($profile->role) }}" readonly>
2021-04-16 01:00:00 +02:00
</div>
@endforeach
@endsection