@extends('blog::_layouts.master') @section('title', __('messages.global.report_abuse')) @section('content') {{-- Header --}}

{{ __('messages.global.report_abuse') }}

{{-- Starting gradient --}} @include('landing::_layouts/_partials/gradient-start', ['fill' => '#f7fafc']) {{-- Content --}}
{{-- Report --}}
@include('reports::_partials/report', ['report' => $report])
{{-- Form --}}
{{-- CSRF --}} @csrf {{-- Type Field --}}
@if ($errors->has('type'))

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

@endif
{{-- Comment Field --}}
0 / 1000
@if ($errors->has('comment'))

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

@endif
{{-- Submit Button --}}
{{-- Ending gradient --}} @include('landing::_layouts/_partials/gradient-end', ['fill' => '#f7fafc']) @endsection @section('js') {{-- Counter for comment textarea --}} @endsection