@extends('layouts.admin') @section('title', 'Point Settings') @section('content')

Point Settings

@if(session('success'))
{{ session('success') }}
@endif @if($settings) Edit Settings @foreach($settings->getAttributes() as $key => $value) @if(!in_array($key, ['id','created_at','updated_at'])) @endif @endforeach
Field Value
{{ $key }} {{ $value }}
@else

No settings found.

Create Settings @endif
@endsection