@extends('admin.layouts.app') @section('title') {{ 'Issue: ' . $issue->summary }} @endsection @section('css') @endsection @section('contents')
New Project
Back
Edit Issue
@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
@csrf @method('PATCH')
Summary
*
Project Key
*
(
Leave as it is!
)
Assignee
*
@foreach($users as $user)
assignee === $user->accountId ? 'selected': '' }} value="{{ $user->accountId }}">{{ $user->displayName }}
@endforeach
{{--
--}} {{--
--}} {{--
Reporter
*
--}} {{--
--}} {{-- @foreach($users as $user)--}} {{--
reporter === $user->accountId ? 'selected': '' }} value="{{ $user->accountId }}">{{ $user->displayName }}
--}} {{-- @endforeach--}} {{--
--}} {{--
--}} {{--
--}}
Issue Type
*
{{--
Bug
--}}
Task
Priority
*
priority === 'Highest' ? 'selected': null }} value="Highest">Highest
priority === 'High' ? 'selected': null }} value="High">High
priority === 'Medium' ? 'selected': null }} value="Medium">Medium
priority === 'Low' ? 'selected': null }} value="Low">Low
priority === 'Lowest' ? 'selected': null }} value="Lowest">Lowest
{{ $issue->description ?? old('description') }}
Due date
*
Submit
@endsection @section('js') @endsection