
<?php $__env->startSection('title', $form->subject); ?>


<?php echo $__env->make('contact::sidebar', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>


<?php $__env->startSection('_content'); ?>


<div id="component_page">
    <h1 class="title"><?php echo $form->subject; ?></h1>

    <table class="table">
        <tbody>
        <tr>
            <th width="100">İsim:</th>
            <td><?php echo $form->name; ?> <?php echo $form->surname; ?></td>
        </tr>
        <tr>
            <th>E-Posta:</th>
            <td><?php echo $form->email; ?></td>
        </tr>

        <tr>
            <th>Telefon:</th>
            <td><?php echo $form->phone; ?></td>
        </tr>

        <tr>
            <th>Başlık:</th>
            <td><?php echo $form->subject; ?></td>
        </tr>

        <tr>
            <th>Mesaj:</th>
            <td><?php echo $form->message; ?></td>
        </tr>
        </tbody>
    </table>



</div>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.wrap', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>