@extends('layouts.app') @section('breadcrumb')
@lang('Edit Ticket')
@lang('Tickets')
@lang('Edit')
@endsection @section('content') @if ($errors->any())
@lang('Whoops!')
@lang('There were some problems with your input.')
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
×
@endif
@csrf @method('PUT')
@lang('Subject'):
@lang('Description'):
{{ $ticket->description }}
@lang('Submit')
@endsection