2018-10-19 00:56:29 +09:00
|
|
|
@extends('setting.base')
|
|
|
|
|
2019-01-19 00:32:56 +09:00
|
|
|
@section('title', 'プロフィール設定')
|
|
|
|
|
2018-10-19 00:56:29 +09:00
|
|
|
@section('tab-content')
|
|
|
|
<h3>プロフィール</h3>
|
|
|
|
<hr>
|
2018-12-30 23:19:52 +09:00
|
|
|
<form action="{{ route('setting.profile.update') }}" method="post">
|
2018-10-19 00:56:29 +09:00
|
|
|
{{ csrf_field() }}
|
|
|
|
<div class="from-group">
|
|
|
|
<label for="display_name">名前</label>
|
2019-01-19 00:39:57 +09:00
|
|
|
<input id="display_name" name="display_name" type="text" class="form-control {{ $errors->has('display_name') ? ' is-invalid' : '' }}"
|
|
|
|
value="{{ old('display_name') ?? Auth::user()->display_name }}" maxlength="20" autocomplete="off">
|
|
|
|
|
|
|
|
@if ($errors->has('display_name'))
|
|
|
|
<div class="invalid-feedback">{{ $errors->first('display_name') }}</div>
|
|
|
|
@endif
|
2018-10-19 00:56:29 +09:00
|
|
|
</div>
|
|
|
|
<div class="from-group mt-2">
|
|
|
|
<label for="name">ユーザー名</label>
|
|
|
|
<div class="input-group">
|
|
|
|
<div class="input-group-prepend">
|
|
|
|
<div class="input-group-text">@</div>
|
|
|
|
</div>
|
2019-01-19 00:29:36 +09:00
|
|
|
<input id="name" name="name" type="text" class="form-control" value="{{ Auth::user()->name }}" disabled>
|
2018-10-19 00:56:29 +09:00
|
|
|
</div>
|
|
|
|
<small class="form-text text-muted">現在は変更できません。</small>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<button type="submit" class="btn btn-primary mt-4">更新</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<h3 class="mt-5">プライバシー</h3>
|
|
|
|
<hr>
|
2018-12-30 23:19:52 +09:00
|
|
|
<form action="{{ route('setting.privacy.update') }}" method="post">
|
2018-10-19 00:56:29 +09:00
|
|
|
{{ csrf_field() }}
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="custom-control custom-checkbox mb-2">
|
2019-01-19 00:29:36 +09:00
|
|
|
<input id="protected" name="is_protected" class="custom-control-input" type="checkbox" {{ (old('is_protected') ?? Auth::user()->is_protected ) ? 'checked' : '' }}>
|
2018-10-19 00:56:29 +09:00
|
|
|
<label class="custom-control-label" for="protected">全てのチェックイン履歴を非公開にする</label>
|
|
|
|
</div>
|
|
|
|
<div class="custom-control custom-checkbox">
|
2019-01-19 00:29:36 +09:00
|
|
|
<input id="accept-analytics" name="accept_analytics" class="custom-control-input" type="checkbox" {{ (old('accept_analytics') ?? Auth::user()->accept_analytics ) ? 'checked' : '' }}>
|
2018-10-19 00:56:29 +09:00
|
|
|
<label class="custom-control-label" for="accept-analytics">匿名での統計にチェックインデータを利用することに同意します</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<button type="submit" class="btn btn-primary mt-2">更新</button>
|
|
|
|
</form>
|
2018-12-30 23:19:52 +09:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@push('script')
|
|
|
|
<script>
|
|
|
|
$('#protected').on('change', function () {
|
|
|
|
if (!$(this).prop('checked')) {
|
|
|
|
alert('チェックイン履歴を公開に切り替えると、個別に非公開設定されているものを除いた全てのチェックインが誰でも閲覧できるようになります。\nご注意ください。');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@endpush
|