@extends('admin.layouts.app') @section('title','Edit Language') @section('content')
@csrf
Edit Language
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
Language Name
Description
{{ old('description', $language->description) }}
Save
@endsection @section('js') @endsection