fixed the config forms not working (controler needed update)

This commit is contained in:
2018-07-26 22:24:39 +02:00
parent 2e075799f2
commit a71fed254a
7 changed files with 63 additions and 24 deletions
@@ -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">
@@ -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.') !!}