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

{{ isset($branch->id) ? 'Edit' : 'Tambah' }} Branch

@error('code') {{ $message }} @enderror
@error('name') {{ $message }} @enderror
@php $selectedDalamKota = old( 'is_dalam_kota', isset($branch->is_dalam_kota) ? $branch->is_dalam_kota : '', ); @endphp @error('is_dalam_kota') {{ $message }} @enderror
@error('parent_id') {{ $message }} @enderror
@if (isset($branch->id)) @can('basic-data.update') @endcan @else @can('basic-data.create') @endcan @endif
@endsection