@extends('layouts.app') @section('title', ' - Edit Languages') @section('content')
{{ __('application.language.edit_language') }} {{ __('application.language.all_language_list') }}
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('code')) {{ $errors->first('code') }} @endif
@if ($errors->has('country_id')) {{ $errors->first('country_id') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@endsection