@extends('layouts.app') @php $title = isset($report) ? 'Edit Report' : 'Create Report'; @endphp @section('title', $title) @section('content')

Report Master

{{ $title }}

@csrf @if (isset($report)) @method('PUT') @endif
{{ $errors->first('type') }}
{{ $errors->first('title') }}
{{ $errors->first('description') }}
@endsection @section('scripts') @endsection