@extends('layouts.admin.app') @section('title', 'New Review') @section('content')
@csrf
@if(!$errors->isEmpty())
    @foreach($errors->all() as $err)
  • {{ $err }}
  • @endforeach
@endif @if(Session::has('message'))
{{ Session::get('message') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif

@endsection