@extends('layouts.admin') @section('content')
{{ trans('global.create') }} Apk
@csrf
@if($errors->has('version'))
{{ $errors->first('version') }}
@endif
@if($errors->has('release_date'))
{{ $errors->first('release_date') }}
@endif
@if($errors->has('release_notes'))
{{ $errors->first('release_notes') }}
@endif
@if($errors->has('play_store_link'))
{{ $errors->first('play_store_link') }}
@endif
@if($errors->has('app_store_link'))
{{ $errors->first('app_store_link') }}
@endif
@if($errors->has('size_mb'))
{{ $errors->first('size_mb') }}
@endif
@if($errors->has('file'))
{{ $errors->first('file') }}
@endif
@endsection @section('scripts') @endsection