@extends('layouts.partials.master') @section('title', 'Criar Nova Língua') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Criar nova língua']) Voltar
@csrf @method('POST')
@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
@include('layouts.components.section-marker', ['section_name' => 'Imagens'])
{{ $errors->first('image') }}
Formatos: jpeg,png,jpg,gif; Tamanho recomendado: 15px x 10px.
@endsection