@extends('admin.layouts.master') @section('title', 'Edit Unit') @section('content')

{{ __('Edit Unit') }}

@csrf
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
@endsection