@extends('admin.layouts.app') @section('title','Edit Project') @section('css') @endsection @section('contents')

Edit Project

Back
@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 @if(!$existsOnJira)
{{ __('This project is not on Jira') }}
@endif
@csrf @method('patch')
{{ $project->key }}
@endsection @section('js') @endsection