@extends('layouts.public_layout')
@section('title', $title)
@section('content')
{{ $title }}
@if (strlen($msg) > 0)
{{ $msg }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if (in_array($tbl, $rows))
@foreach ($items[$tbl] as $fld)
{{ $fld->Field }}
@endforeach
@endif
@endsection