@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', ]) !!}
{{-- admit card rules --}}
{!! Form::checkbox('is_visible_condition', '1', false, ['class' => 'form-check-input', 'id' => 'condition',]) !!} {!! Form::label('condition', 'Is Reason Apply?', ['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( 'principal_signature_image', 'Principal Signature Image: *', ['class' => 'col-sm-4 control-label'], false, ) !!}
Sign Preview {!! Form::file('principal_signature_image',[ 'class' => 'form-control hidden', 'id' => 'principle_signature_image', 'type' => 'file', 'accept' => 'image/*', 'autocomplete' => 'off', ]) !!}

{!! Form::label( 'vice_principal_signature_image', 'Vice Principal Signature Image: *', ['class' => 'col-sm-4 control-label'], false, ) !!}
Sign Preview {!! Form::file('vice_principal_signature_image',[ 'class' => 'form-control hidden', 'id' => 'vice_principle_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