@extends('layouts.master') @section('title',__('Edit Language') . ''." - $langs->name") @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Edit Language')}}
{!! Form::model($langs, ['method' => 'PATCH', 'action' => ['LanguageController@update', $langs->id]]) !!}
{!! Form::label('local', __('local')) !!} {!! Form::text('local', null, ['class' => 'form-control', 'required' => 'required']) !!} {{ $errors->first('local') }}
{!! Form::label('name', __('Name')) !!} {!! Form::text('name', null, ['class' => 'form-control', 'required' => 'required']) !!} {{ $errors->first('name') }}


{!! Form::close() !!}
@endsection @section('script') @endsection