@extends('layouts.master') @section('title',__('Edit')." "." $a_lan->language") @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Edit Audio Language')}}
{!! Form::model($a_lan, ['method' => 'PATCH', 'action' => ['AudioLanguageController@update', $a_lan->id] ,'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