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

Edit Member Photo #{{ $memberPhoto->id }}

@stop @section('content')
@csrf @method('PUT')
@include('member-photos._form', ['memberPhoto' => $memberPhoto])
@stop