{{-- Profile edit form --}} @extends('layouts.app') @section('content')
@csrf
@php(Widget::setLayout(3, 7)) {!! Widget::header(1, 'Settings') !!} {!! Widget::text('title', 'Display Name')->value($user->title)->required()->autofocus() ->help('Shown on your profile page, tables, comments, etc.') !!} {!! Widget::textarea('bio', 'About Me')->value($user->bio)->height('8em') ->help('This is shown in your profile box') !!} {!! Widget::text('website', 'Website')->value($user->website)->prepend('') ->help('Custom clickable link shown on your profile page.') !!}
@endsection