datatable.directory codebase
				https://datatable.directory/
			
			
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							37 lines
						
					
					
						
							1.2 KiB
						
					
					
				
			
		
		
	
	
							37 lines
						
					
					
						
							1.2 KiB
						
					
					
				| {{-- Profile edit form --}}
 | |
| 
 | |
| @extends('layouts.app')
 | |
| 
 | |
| @section('content')
 | |
|   <form method="POST" action="{{route('profile.store')}}" class="row justify-content-center"
 | |
|         aria-label="Profile Settings">
 | |
|     @csrf
 | |
| 
 | |
|     <div class="col-md-10">
 | |
|       @php(Widget::setLayout(3, 7))
 | |
| 
 | |
|       {!! Widget::header(1, 'Profile Settings') !!}
 | |
|       {!! 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.') !!}
 | |
| 
 | |
|       {!! 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('<i class="fa-globe"></i>')
 | |
|             ->help('Custom clickable link shown on your profile page.') !!}
 | |
| 
 | |
|       <div class="row form-group">
 | |
|         <div class="col-md-7 offset-md-3">
 | |
|           <button type="submit" class="btn btn-primary">
 | |
|             @icon(fa-save fa-pr)Save Changes
 | |
|           </button>
 | |
|         </div>
 | |
|       </div>
 | |
|     </div>
 | |
|   </form>
 | |
| @endsection
 | |
| 
 |