@php if (empty($units)) { $unit_id = ''; $name = ''; } else { $unit_id = $units->unit_id; $name = $units->name; } @endphp @extends('layouts.master') @section('title', 'Unit Add/Edit') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.title') @yield('title') @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @csrf Name * Back * These fields are required. @include('layouts.footer') @endsection