@extends('admin.layouts.app') @section('title', isset($landmark) ? 'Edit Landmark' : 'Add Landmark') @section('breadcrumb') Spatial Intelligence / Landmarks / {{ isset($landmark) ? 'Edit' : 'Add' }} @endsection @section('content')
@if($errors->any())
@foreach($errors->all() as $err)
{{ $err }}
@endforeach
@endif
@csrf @if(isset($landmark)) @method('PUT') @endif
Cancel
@endsection