fixed the config forms not working (controler needed update)
This commit is contained in:
+3
-3
@@ -5,12 +5,12 @@
|
||||
@section('content')
|
||||
@php(Widget::setLayout(3, 7))
|
||||
|
||||
<form method="POST" action="{{route('profile.store')}}" class="row justify-content-center">
|
||||
<form method="POST" action="{{route('account.store')}}" class="row justify-content-center">
|
||||
@csrf
|
||||
|
||||
<div class="col-md-10">
|
||||
{!! Widget::header(1, 'Login Settings') !!}
|
||||
{!! Widget::par('Confirm using the save button at the bottom.') !!}
|
||||
{!! Widget::header(1, 'Your Account') !!}
|
||||
{!! Widget::par('Confirm using the save button at the bottom.', 'text-muted') !!}
|
||||
</div>
|
||||
|
||||
<div class="col-md-10 mt-3">
|
||||
+5
-1
@@ -10,7 +10,11 @@
|
||||
<div class="col-md-10">
|
||||
@php(Widget::setLayout(3, 7))
|
||||
|
||||
{!! Widget::header(1, 'Settings') !!}
|
||||
{!! Widget::header(1, 'Your Profile') !!}
|
||||
{!! Widget::par('
|
||||
Username can be changed on the
|
||||
<a href="'.e(route('account.edit')).'">account settings</a> page.
|
||||
', 'text-muted', false) !!}
|
||||
|
||||
{!! Widget::text('title', 'Display Name')->value($user->title)->required()->autofocus()
|
||||
->help('Shown on your profile page, tables, comments, etc.') !!}
|
||||
Reference in New Issue
Block a user