@extends('layouts.master') @section('title',__('Create Language')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Create Language')}}
{!! Form::open(['method' => 'POST', 'action' => 'LanguageController@store']) !!}
{!! Form::label('local', __('local')) !!} {!! Form::text('local', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => __('Please Enter Language Local Name')]) !!} {{ $errors->first('local') }}
{!! Form::label('name', __('Name')) !!} {!! Form::text('name', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => __('Please Enter Language Name')]) !!} {{ $errors->first('name') }}


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