@extends('admin.layouts.master') @section('title', __('admin.settings')) @section('page_title', __('admin.settings')) @section('breadcrumbs') @endsection @section('content')
{{-- ===== Company tab ===== --}}
@csrf @method('PUT') @php $c = $values['company']; @endphp
@if(!empty($c['logo']))
@endif
@can('settings.edit') @endcan
{{-- ===== Invoice tab ===== --}}
@csrf @method('PUT') @php $i = $values['invoice']; @endphp
@can('settings.edit') @endcan
{{-- ===== Email tab ===== --}}
@csrf @method('PUT') @php $e = $values['email']; @endphp
@can('settings.edit') @endcan
{{-- ===== System tab ===== --}}
@csrf @method('PUT') @php $s = $values['system']; @endphp
@can('settings.edit') @endcan
@endsection