@section('title', \Auth::user()->name) @section('sub-title', 'Profile')
Profile Photo
User
@error('photo')

{{ $message }}

@enderror

Upload your photo.
Image should be at least 140px x 140px

Basic Information

@if (session()->has('message-password')) @endif
Change Password
@error('current_password')

{{ $message }}

@enderror
@error('new_password')

{{ $message }}

@enderror

@section('page-script') $(function() { // photo upload $('#btn-upload-photo').on('click', function() { $(this).siblings('#filePhoto').trigger('click'); }); // plans $('.btn-choose-plan').on('click', function() { $('.plan').removeClass('selected-plan'); $('.plan-title span').find('i').remove(); $(this).parent().addClass('selected-plan'); $(this).parent().find('.plan-title').append(''); }); }); @stop