@extends('layouts/eims_layout') @section('title', '| ' . $pageTitle) @section('content')
Add {{ $pageTitle }}
{!! Form::open([ 'url' => '', 'enctype' => 'multipart/form-data', 'role' => 'form', 'class' => 'form-horizontal form-groups', 'id' => 'addDesignAdmitCardForm', ]) !!}
{!! Form::radio('alignment_type', 'horizontal', true, ['class' => 'form-check-input', 'id' => 'horizontal_name', 'style' => 'margin-left: 10px;']) !!} {!! Form::radio('alignment_type', 'vertical', false, ['class' => 'form-check-input', 'id' => 'vertical_name']) !!}
{!! Form::radio('signature_person', 'administrator', true, ['class' => 'form-check-input', 'id' => 'administrator_signature', 'style' => 'margin-left: 10px;', 'onclick' => 'toggleSignatureImage()']) !!} {!! Form::radio('signature_person', 'teacher', false, ['class' => 'form-check-input', 'id' => 'teacher_signature', 'onclick' => 'toggleSignatureImage()']) !!} {!! Form::radio('signature_person', 'student', false, ['class' => 'form-check-input', 'id' => 'student_signature', 'onclick' => 'toggleSignatureImage()']) !!}
{!! Form::checkbox('is_visible_watermark', '1', false, ['class' => 'form-check-input', 'id' => 'watermark']) !!} {!! Form::label('watermark', 'Is Water Mark?', ['class' => 'form-check-label']) !!}
{!! Form::checkbox('is_visible_scanner', '1', false, ['class' => 'form-check-input', 'id' => 'scanner']) !!} {!! Form::label('scanner', 'Is Scanner?', ['class' => 'form-check-label']) !!}
{!! Form::checkbox('is_visible_background', '1', false, ['class' => 'form-check-input', 'id' => 'background']) !!} {!! Form::label('background', 'Is Background?', ['class' => 'form-check-label']) !!}
{!! Form::checkbox('is_visible_logo', '1', false, ['class' => 'form-check-input', 'id' => 'is_visible_logo']) !!} {!! Form::label('background', 'Is Logo?', ['class' => 'form-check-label']) !!}
{{-- admit card rules --}}
{!! Form::checkbox('is_visible_condition', '1', false, ['class' => 'form-check-input', 'id' => 'condition']) !!} {!! Form::label('condition', 'Is Condition?', ['class' => 'form-check-label']) !!}
{!! Form::text('condition_1', $value = null, [ 'class' => 'form-control', 'id' => 'condition_1', 'type' => 'text', 'placeholder' => 'Enter Condition', 'style' => 'width: 90%;', 'maxlength' => '98', ]) !!}

{!! Form::text('condition_2', $value = null, [ 'class' => 'form-control', 'id' => 'condition_2', 'type' => 'text', 'placeholder' => 'Enter Condition', 'style' => 'width: 90%;', 'maxlength' => '98', ]) !!}

{!! Form::text('condition_3', $value = null, [ 'class' => 'form-control', 'id' => 'condition_3', 'type' => 'text', 'placeholder' => 'Enter Condition', 'style' => 'width: 90%;', 'maxlength' => '98', ]) !!}

{!! Form::label( 'administrator_signature', 'Signature Image: *', ['class' => 'col-sm-4 control-label'], false, ) !!}
Sign Preview {!! Form::file('signature_image',[ 'class' => 'form-control hidden', 'id' => 'signature_image', 'type' => 'file', 'accept' => 'image/*', 'autocomplete' => 'off', ]) !!}

{!! Form::label( 'logo_image', 'Logo Image: *', ['class' => 'col-sm-4 control-label'], false, ) !!}
Logo Image Preview {!! Form::file('logo_image', [ 'class' => 'form-control hidden', 'id' => 'logo_image', 'type' => 'file', 'accept' => 'image/*', 'autocomplete' => 'off', ]) !!}

{!! Form::label( 'background_image', 'Background Image: *', ['class' => 'col-sm-4 control-label'], false, ) !!}
Background Image Preview {!! Form::file('background_image', [ 'class' => 'form-control hidden', 'id' => 'background_image', 'type' => 'file', 'accept' => 'image/*', 'autocomplete' => 'off', ]) !!}
{!! Form::label('submit', ' ', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@endsection