@extends('layouts.partials.master') @section('title', 'Editar Língua') @push('styles') @endpush @section('content') @include('layouts.components.section-title', ['title' => 'Editar Língua'])
Voltar
@include('layouts.components.alerts')
@csrf @method('PUT')
@if ($errors->has('language_code'))
{{ $errors->first('language_code') }}
@endif
@if ($errors->has('language_name'))
{{ $errors->first('language_name') }}
@endif
@if ($errors->has('default'))
{{ $errors->first('default') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@include('layouts.components.section-marker', ['section_name' => 'Imagens'])
{{ $errors->first('image') }}
Formatos: jpeg,png,jpg,gif; Tamanho recomendado: 15px x 10px.
@if ($language->image) Imagem @else

Sem imagem

@endif
@endsection