@extends('layouts.app') @section('title', 'ニュース編集') @section('content') {{-- ▼ コンテンツヘッダー(パンくず) --}}

ニュース編集

{{-- ▼ フラッシュ/エラー表示 --}} @if(session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif {{-- ▼ 入力フォーム --}}
@csrf
{{-- ▼ 登録/更新メタ情報 --}}
登録日時:{{ $news->created_at }}
更新日時:{{ $news->updated_at }}
@endsection