@extends('layouts.main') @section('breadcrumbs') {{ Breadcrumbs::render(request()->route()->getName()) }} @endsection @section('content')
@csrf @if(isset($holiday->id)) @method('PUT') @endif

{{ isset($holiday->id) ? 'Edit' : 'Tambah' }} Hari Libur

@error('date') {{ $message }} @enderror
@error('description') {{ $message }} @enderror
@error('type') {{ $message }} @enderror
@if(isset($holiday->id)) @can('basic-data.update') @endcan @else @can('basic-data.create') @endcan @endif
@endsection