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

{{ $title }}

@if ($errors->any())
Whoops! Ada beberapa masalah dengan data yang anda masukkan.
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
@foreach (['name' => 'Nama', 'urutan' => 'Urutan', 'guard_name' => 'Guard'] as $field => $label)
{{ $label }}:
@endforeach
Kembali
@endsection