{{ __('設定') }}

@include('layouts.settings-submenu')

@if ($item->id) {{ __('組織 編集') }} @else {{ __('組織 新規登録') }} @endif

{{ __('組織の情報を入力してください') }}

@php if ( auth() ->user() ->can('manage_organizations') ) { if ($item->id) { $action = route('organizations.update', $item->id); } else { $action = route('organizations.store'); } } else { $action = route('settings.organization.save', $item->id); } @endphp
@csrf @if ($item->id) @method('patch') @else @method('post') @endif @can('manage_organizations')
@endcan
@can('manage_organizations') {{ __('戻る') }} @endcan @if ($item->id) {{ __('更新') }} @else {{ __('登録') }} @endif