@extends('layouts.app') @section('content-header')

{{__('tag.edit_tag')}}

@endsection @section('content')

{{ !empty($tag->title) ? ucfirst($tag->title) : 'Tag' }}

{{ csrf_field() }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @include ('tags.form', ['tag' => $tag,])
@endsection