@extends('layouts.app') @section('css') @endsection @section('content')
@if ($message = Session::get('success'))
{{ $message }}
@endif @if ($message = Session::get('danger'))
{{ $message }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error) {{ $error }} @endforeach
@endif
@includeif('partials.errors')
Ubah Data Notifikasi
{{ method_field('PATCH') }} @csrf
@include('notification.form')
@endsection @section('js') @endsection