@extends('layouts.app_main') @section('content')
Emergency Contact
@if (session('success'))
{{ session('success') }}
@endif
{{count(Auth::user()->emergency_contact)?(Auth::user()->emergency_contact->name):''}}
{{count(Auth::user()->emergency_contact)?(Auth::user()->emergency_contact->surname):''}}
{{count(Auth::user()->emergency_contact)?(Auth::user()->emergency_contact->number):''}}
{{count(Auth::user()->emergency_contact)?(Auth::user()->emergency_contact->name):''}}
{!! nl2br(count(Auth::user()->emergency_contact)?(Auth::user()->emergency_contact->address):'')!!}
@endsection @section('javascript') function gup(name) { url = location.href; name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]"); var regexS = "[\\?&]"+name+"=([^&#]*)"; var regex = new RegExp( regexS ); var results = regex.exec( url ); return results == null ? null : results[1]; } $(function () { if(gup('edit')){ $('.show_text').hide(); $('.show_form').show(); }else{ $('.show_text').show(); $('.show_form').hide(); } }); $('.edit_button').on('click',function(){ window.location.href = location.href + "?edit=1"; }); @endsection