File "profile.blade.php"
Full Path: /home/fundopuh/trader.fxex.org/resources/views/admin/Profile/profile.blade.php
File size: 1.55 KB
MIME-type: text/plain
Charset: utf-8
@extends('layouts.app')
@section('content')
<div class="mt-2 mb-4">
<h1 class="title1 ">Account Profile Information</h1>
</div>
<x-admin.alert />
<div class="row profile">
<div class="p-2 col-md-8 offset-md-2">
<div class="card p-5 shadow-lg ">
<form role="form" method="post"action="{{ route('upadprofile') }}">
<h5 class="">First name</h5>
<input type="text" name="name" value="{{ Auth('admin')->User()->firstName }}"
class="form-control "> <br>
<h5 class="">Last name</h5>
<input type="text" name="lname" value="{{ Auth('admin')->User()->lastName }}"
class="form-control "> <br>
<h5 class="">Phone Number</h5>
<input type="text" name="phone" class="form-control " value="{{ Auth('admin')->User()->phone }}">
<br>
<h5 class="">Two Factor Authentication</h5>
<select class="form-control " name="token">
<option>{{ Auth('admin')->User()->enable_2fa }}</option>
<option value="enabled">Enable</option>
<option value="disabled">Disable</option>
</select><br>
<input type="hidden" name="_token" value="{{ csrf_token() }}">
<input type="submit" class="btn btn-primary" value="Update">
</form>
</div>
</div>
</div>
@endsection