@extends('admin.layouts.app')
@section('title', 'Edit Project')
@section('page-title', 'Edit Project')
@section('page-subtitle', $project->name)
@section('content')
Edit {{ $project->name }}
Update project information and public visibility.
Projects
@include('admin.projects.partials.form', [
'action' => route('admin.projects.update', $project),
'method' => 'PUT',
'submitLabel' => 'Save Changes',
'project' => $project,
])
@endsection