@extends('layouts.base') @section('content')

チェックインの修正


{{ method_field('PUT') }} {{ csrf_field() }}
@if ($errors->has('date'))
{{ $errors->first('date') }}
@endif
@if ($errors->has('time'))
{{ $errors->first('time') }}
@endif
@if ($errors->has('datetime'))
{{ $errors->first('datetime') }}
@endif
    Tab, Enter, 半角スペースのいずれかで入力確定します。 @if ($errors->has('tags'))
    {{ $errors->first('tags') }}
    @endif
    {{--
    スペース区切りで複数入力できます。
    --}}
    オカズのURLを貼り付けて登録することができます。 @if ($errors->has('link'))
    {{ $errors->first('link') }}
    @endif
    最大 500 文字 @if ($errors->has('note'))
    {{ $errors->first('note') }}
    @endif

    オプション

    @endsection @push('script') @endpush