@extends('university.layouts.layout') @push('css') @endpush @section('content') {{ @$profileDetail ? 'Edit' : 'Create' }} Profile @include('flash-messages') @csrf University Name Phone No. Email Study Permit / Visa I don't have this permit_visa) ? ($profileDetail->permit_visa == 'usa_f1' ? 'selected' : '') : '' }}> USA F1 Visa permit_visa) ? ($profileDetail->permit_visa == 'canada' ? 'selected' : '') : '' }}> Canadian Study Permit or Visitor Visa permit_visa) ? ($profileDetail->permit_visa == 'uk' ? 'selected' : '') : '' }}> UK Student Visa (Tier 4) or short Term Study Visa permit_visa) ? ($profileDetail->permit_visa == 'australian' ? 'selected' : '') : '' }}> Australian Student Visa permit_visa) ? ($profileDetail->permit_visa == 'irish' ? 'selected' : '') : '' }}> Irish Stamp 2 Nationality Select Country @foreach ($countries as $country) country == $country->id ? 'selected' : '') : '' }}> {{ $country->name }} @endforeach State Select State @foreach ($states as $value) state == $value->id ? 'selected' : '') : '' }}> {{ $value->name }} @endforeach City Select City @foreach ($cities as $value) city == $value->id ? 'selected' : '') : '' }}> {{ $value->name }} @endforeach University Address {{ $profileDetail->address ?? old('address') }} About University {{ $profileDetail->about_university ?? old('about_university') }} Features {{ $profileDetail->feature ?? old('feature') }} Location {{ $profileDetail->location ?? old('location') }} Institution Details Founded School ID Provider ID number Institution type {{-- Blocked Countries Select Country @foreach ($countries as $country) id, explode(',', $profileDetail->blocked_country)) == true ? 'selected' : '') : '' }}> {{ $country->name }} @endforeach --}} Average Time to Receive Letter of Acceptance {{ $profileDetail->letter_of_acceptance ?? old('letter_of_acceptance') }} Top Disciplines {{ $profileDetail->disciplines ?? old('disciplines') }} University Pictures UploadPhoto Amenities @forelse ($profileDetail->amenities as $key => $amenity) Label Name Label Value icon @if ($key == 0) Add @else Remove @endif @empty Label Name Label Value icon Add @endforelse Save & Update Profile @endsection @section('pagescriptcode') @endsection