@extends('admin.layouts.master') @section('title','Edit Previouspaper') @section('maincontent') @include('admin.layouts.topbar',$data) @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{ __('Edit') }} {{ __('Previouspaper') }}
{{ __('Back') }}
{{ csrf_field() }} {{ method_field('PUT') }}
{{ __('Title') }} :
*
{{ __('Detail') }} :
*
{{ $paper->detail }}
{{ __('PaperUpload') }} :
-
{{__('eg: zip or pdf files')}}
{{ __('Upload') }}
{{ __('Choose file') }}
{{ __('Status') }} :
status == '1' ? 'checked' : '' }} />
{{ __('Reset') }}
{{ __('Update') }}
@endsection