@extends('layouts.master') @section('title',__('Edit Fake View')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Edit Fake Season Views')}}
{!! Form::model($season, ['method' => 'PATCH', 'action' => ['FakeSeasonViewController@update', $season->id], 'files' => true]) !!}
{!! Form::label('views', __('Add Fake View')) !!} {!! Form::number('views', old('views'), ['class' => 'form-control','autocomplete'=>'off','required']) !!}
{!! Form::close() !!}
@endsection @section('script') @endsection