@extends('layouts.app') @php $title = isset($report) ? 'Edit Report' : 'Create Report'; @endphp @section('title', $title) @section('content') Report Master Dashboard {{ $title }} {{ $title }} @csrf @if (isset($report)) @method('PUT') @endif Type* type ?? '') === '' ? 'selected' : '' }}>Select Type type ?? '') == '0' ? 'selected' : '' }}>Report type ?? '') == '1' ? 'selected' : '' }}>Block {{ $errors->first('type') }} Title* {{ $errors->first('title') }} Description* {{ old('description', $report->description ?? '') }} {{ $errors->first('description') }} Status* status ?? 1) == 1 ? 'selected' : '' }}> Active status ?? 1) == 0 ? 'selected' : '' }}> Inactive @endsection @section('scripts') @endsection