@extends('layouts.master') @section('title',__('Create Audio Language')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Create Audio Language')}}
{!! Form::open(['method' => 'POST', 'action' => 'AudioLanguageController@store', 'files' => true]) !!}
{{ $errors->first('language') }}
{!! Form::label('image', __('Audio Language Image')) !!} {!! Form::file('image', ['class' => 'input-file', 'id'=>'image']) !!} {{ $errors->first('image') }}
{!! Form::close() !!}
@endsection @section('script') @endsection