@section('title', 'Setting') @section('parentPageTitle', 'Dashboard')
Logo
@if($logoUrl) User @endif
@error('logo')

{{$message}}

@enderror

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

Favicon
@if($faviconUrl) User @endif
@error('favicon')

{{$message}}

@enderror

Upload your Favicon.
Image should be at least 16px x 16px


Basic Information
Check Login
@section('page-script') $(function() { // favicon upload $('#btn-upload-favicon').on('click', function() { $(this).siblings('#fileFavicon').trigger('click'); }); // 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