@extends('dashboard.master') @section('content')
{{ Str::title($entity) }}

@csrf
@if ($errors->has('key')) {{ $errors->first('key') }} @endif
@if ($errors->has('value')) {{ $errors->first('value') }} @endif
@include('dashboard.includes.status-field', ['status' => $record->status])
@if (session()->has('message'))
Info! {{ session()->get('message') }}
@endif
@endsection @push('extra-scripts') @endpush