iclop_v1/resources/views/admin/exercisefiles/edit.blade.php
2022-08-17 19:44:54 +07:00

51 lines
2.4 KiB
PHP

@extends('admin/admin')
@section('content')
<div class="row">
<div class="col-12">
{{ Form::model($data,['route'=>['exercisefiles.update',$fileid], 'files'=>true,'method'=>'PUT']) }}
<div class="card">
<div class="card-header">
<h3 class="card-title">Change Data of Exercise File</h3>
</div>
<div class="card-body">
@if(!empty($errors->all()))
<div class="alert alert-danger">
{{ Html::ul($errors->all())}}
</div>
@endif
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="name">Topic</label>
<input id="topic" type="text" value="{{ $data['name'] }}" class="form-control" disabled />
</div>
<div class="form-group">
{{ Form::label('guide', 'Guide File(s) (*.zip,*.rar) [Left empty if is not updated]') }}
{{ Form::file('guide', ['class'=>'form-control']) }}
</div>
<div class="form-group">
{{ Form::label('testfile', 'Test File(s) (*.zip,*.rar) [Left empty if is not updated]') }}
{{ Form::file('testfile', ['class'=>'form-control']) }}
</div>
<div class="form-group">
{{ Form::label('supplement', 'Supplement File(s) (*.zip,*.rar) [Left empty if is not updated]') }}
{{ Form::file('supplement', ['class'=>'form-control']) }}
</div>
<div class="form-group">
{{ Form::label('other', 'Other File(s) (*.zip,*.rar) [Left empty if is not updated]') }}
{{ Form::file('other', ['class'=>'form-control']) }}
</div>
</div>
</div>
</div>
<div class="card-footer">
<input type="button" value="Back" onclick="history.back()" class="btn btn-outline-info">
{{ Form::submit('Save', ['class' => 'btn btn-primary pull-right']) }}
</div>
</div>
<!-- </form> -->
{{ Form::close() }}
</div>
</div>
@endsection