@extends('adminlte::page') @section('title', 'Edit Match') @section('content_header')

Edit Match #{{ $match->id }}

@stop @section('content')
@csrf @method('PUT')
@include('matches._form', ['match' => $match])
@stop